✍️ AI 改写 🎯 Meme 猎手 🦐 皮皮虾
3000 展示 > 赞 >
排序:
Tom Dörr AI @tom_doerr · 2026年06月24日 20:13
图片
1 104 20.3K
Huan AI @Huanusa · 2026年06月26日 01:31
罗振宇这段专访,信息量很大。
真正厉害的地方,不是讲了多少知识点,
而是把很多人卡住的问题讲透了
suiran https://x.com/Huanusa/status/2070318879646081229/video/1
10 119 22.3K
歸藏(guizang.ai) AI @op7418 · 2026年06月26日 02:42
Anthropic 还是达成了他的目的。

现在 OpenAI 的模型已经不能按照之前的模式正常推送上线了,需要先向一些符合要求的 B 端客户提供,并由美国政府对这些客户逐一审核。

结合这几天 GLM 5.2 以及 Anthropic 指控中国公司“蒸馏”他们模型的事来看,我们已经无法将模型发布当作正常的互联网产品上线逻辑来看待了。

它已经变成了类似军民两用的战略资产、网络武器这一等级的管控。谁能使用先进模型,已经变成了一个国家安全问题。

这会带来以下几个变化:

发布节奏放缓 整个头部模型的发布节奏会严重放缓。虽然模型训练的节奏会变慢,但拿到许可的公司会先利用先进模型和头部模型建立竞争优势。

准入门槛提高 先进模型的使用准入会变得更加严格,需要经过更严苛的审查,尤其是美国的这些模型。美国模型公司的护城河正在从“模型是否最强”转变为“是否能被安全、合法且持续地交付”,这变成了一种准入机制,还要看与政府的关系。

但这也会造成一个问题:

如果我们中国的开源模型继续变强,可能会吃掉更多美国模型的订单。不过,不排除美国会对中国开源模型进行更严格的监管和控制(例如禁止美国公司使用中国开源模型),但这种做法是否能管得住,还需要再看。
图片
49 8 35.3K
Ding AI @dingyi · 2026年06月26日 00:38
前端死没死我不知道,但是现在 agent 的前端还原能力太逆天了,什么网站都能原封不动的还原出来。拿来吧你! https://x.com/dingyi/status/2070305673121042481/video/1
33 8 27.6K
周览资源分享 其他 @grgerwcwetwet · 2026年06月25日 11:44
图片图片
4 14 22.5K
RootData融资 其他 @rootdata · 2026年06月25日 00:00
【融资】Canopy 完成 种子轮,融资 $8.5M
Layer 1开发框架
投资方:Fenbushi Capital、Arrington Capital、Borderless Capital
🔗 https://cn.rootdata.com/projects/detail?k=MjI2NTY=
📰 来源:https://crypto.news/canopy-network-raises-8-5m-and-acquires-infrastructure-technology-to-accelerate-ai-native-blockchain-development/
图片
0 0 0
Akshay 🚀 AI @akshay_pachaar · 2026年06月25日 09:29
AI 安全远不止 AI 本身。

给产品加上 LLM 调用时,大家的安全重心通常都在提示词过滤、输出护栏和输入验证上。

这确实关键,但只管到了应用层,同样重要的基础设施层也得有自己的控制手段。

想搞明白这点,可以追踪一次模型调用:

提示词离开 App,打到供应商端点,根据他们的留存政策,数据可能会在外部日志里躺上好几天。

如果提示词里有受监管或私密数据,它就已经“出界”了。

这不算提示词过滤的锅,因为过滤只管进模型的内容,管不了数据往哪跑、谁来存。

除了应用层,基建层还有两个痛点得解决:

1) 请求级别的安全。
每次调用都在把数据往外推。传输中谁能看?租户范围对不对?

2) 态势漂移(Posture Drift)。
供应商存数据吗?存多久?一个租户的提示词会不会意外串到另一个租户那儿?AI 输出是否还在企业合规边界内?

通常团队会在业务代码里硬磕,给每个 AI 功能都手写一套:
- 范围逻辑
- 加密
- 日志

十个功能就得写十遍。

把这些挪到基建层就简单多了:
- 用 IAM 策略控制服务权限,新调用会自动继承安全边界。
- VPC 隔离在网络层就把租户流量分开了。
- 默认全链路加密。所有 API 调用(包括模型调用)自动打日志,业务代码啥都不用管。

@awscloud 把这套做成了托管基建,今天他们和我一起聊聊这背后的原理。

通过 Bedrock 或 SageMaker 调模型,能直接继承 IAM、VPC、加密和 CloudTrail 这些安全边界,跟其他云服务没差。

比如 IDEMIA 就在生产环境这么玩。他们处理 45 个以上美国政府机构的身份数据。

在迁移到 AWS GovCloud 上的 Amazon EKS 容器后,他们成本砍掉 30%,交付快了 4 倍。安全感全来自基建,而不是业务代码。

想了解更多 AWS 如何支持 ISV 这种玩法,看这里 → https://aws.amazon.com/isv/?utm_source=fnf&utm_medium=x&utm_campaign=june&utm_term=apaachar&utm_content=isv

另外,我还写了一份生产级 Agent Harness(包装 LLM 的软件层)的 11 个组件拆解。这篇文章讲的是它的底层。底层稳了,Harness 才安全。

阅读全文见下。
AI security goes far beyond AI.

Adding an LLM call to a product puts security focus primarily on prompt filtering, output guardrails, and input validation.

That is crucial, but it only covers the application layer, and an equally important infra layer needs its own controls.

To understand this, trace a single model call.

The prompt leaves the app, hits a provider endpoint, and depending on their retention policy, it sits in external logs for days.

If that prompt carries any regulated/private data, it moves beyond the app's boundary.

This isn't a failure of prompt filtering since it only governs what goes into the model, and it does not enforce where data can travel/who can store it.

Beyond application-layer controls, two infrastructure-level concerns need their own coverage:

1) The first is per-request.

Every model call moves data outside the app boundary. Who can access it in transit? Is it scoped to the right tenant?

2) The second is posture drift.

Do providers retain the data, and for how long? Can one tenant's prompts reach another tenant's context through unintended disclosure? And do the AI outputs stay inside the compliance boundary that enterprise deals require?

Teams typically solve both in the application code, where each new AI
feature gets its:

- own scoping logic
- own encryption
- own logging

Ten features mean ten separate implementations of the same controls.

Moving both to the infrastructure layer simplifies this.

- If IAM policies control which services can call which endpoints, every new model call will inherit that boundary automatically.

- VPC isolation keeps tenant traffic apart at the network level.

- Encryption covers every data flow by default. Every API call, including model calls, gets logged without the feature code handling any of it.

@awscloud builds this as the managed infra and they have partnered with me today to explain how it works.

Model calls through Bedrock or SageMaker inherit the same IAM, VPC, encryption, and CloudTrail boundaries as every other service.

For instance, IDEMIA runs this pattern in production. The company handles identity data for 45+ US government agencies.

After moving to containers on Amazon EKS in AWS GovCloud, they cut costs by 30% and sped up delivery by 4x, with the security coming from the infrastructure, not the application code.

You can read more on how AWS supports ISVs building this way → https://aws.amazon.com/isv/?utm_source=fnf&utm_medium=x&utm_campaign=june&utm_term=apaachar&utm_content=isv

Also, I wrote a detailed breakdown of the 11 components in a production agent harness, the full software layer that wraps an LLM. This post covers what sits underneath it. The harness is only as secure as the layer it runs on.

Read it below.
18 20 20.4K
Nav Toor AI @heynavtoor · 2026年06月25日 19:59
斯坦福研究证明:你不是被 10 家公司拒绝了,而是被同一个算法拒绝了 10 次。

你的测评分数会被存储 330 天。所有共用同一个供应商的公司看到的都是同一个数字。这被研究人员称为“算法黑名单”。

斯坦福 HAI、查普曼大学和东北大学的研究人员发布了史上最大规模的 AI 招聘算法审计报告。

这篇论文名为《招聘中的算法单一化》,发表于 2026 年 5 月 26 日的 FAccT。数据源自 Pymetrics,这家 AI 招聘平台被大多数财富 100 强企业所采用。

以下是核心发现:

当你申请使用 Pymetrics 的公司时,要玩一系列测评游戏。分数会被存下来,有效期长达 330 天。如果另一家公司也用 Pymetrics,它会直接调用你之前的分数。这根本不是两次独立的评估,而是同一个分数用了两次。

只要算法拒绝你一次,你就在所有地方都被判了“死刑”。

这就是所谓的“算法黑名单”。一个低分就能把你从所有共用供应商的公司里踢出去。你永远不知道为什么,也永远没有第二次机会,只能眼睁睁看着申请石沉大海。

研究人员用真实数据做了大规模模拟,结果触目惊心:超过 4 万个录用机会白白流失,因为那些本能胜任某家公司的申请人,却被针对另一家公司校准的算法给刷掉了。

他们还统计了受害最深的群体:

25.87% 的非裔申请人和 14.74% 的亚裔申请人遭遇了算法歧视。这不是推测,而是从全球顶级雇主实际运行的系统中测出的真实数据。

同样的算法,在不同公司反复横跳,却在每个地方都制造了同样的种族差异。

这事儿已经闹上法庭了。Mobley v. Workday 联邦集体诉讼正在审理中,指控 AI 招聘工具系统性歧视老年人、非裔和残疾人。

欧洲那边,欧盟《人工智能法案》已将招聘算法列为高风险系统,合规要求将于 2026 年 8 月 2 日生效。而在美国,目前还没有类似的联邦法律。

研究人员建议:在岗位维度衡量负面影响;加强跨公司监管;警惕算法集中风险;为独立研究开辟数据获取通道。

最后一点其实是个警告:这项研究能做成,全靠 Pymetrics 自愿分享数据。大多数供应商都恨不得让算法永远是个“黑盒”。

下次当你投了简历却再无音讯时,拒绝你的可能根本不是人,而是你 330 天前在一家早忘了的公司、为一个毫不相关的岗位测出的那个分数。
Stanford researchers proved you are not being rejected by 10 companies. You are being rejected by one algorithm 10 times.

Your score is stored for 330 days. Every company that uses the same vendor sees the same number. They call it the algorithmic blackball.

Researchers at Stanford HAI, Chapman University, and Northeastern University published the largest audit of AI hiring algorithms ever conducted.

The paper is called "Algorithmic Monocultures in Hiring." Published at FAccT 2026, May 26. The data came from Pymetrics, the AI hiring platform used by major Fortune 100 companies.

Here is what they found.

When you apply for a job at a company that uses Pymetrics, you play a series of assessment games. Your scores are stored. For up to 330 days. If another company also uses Pymetrics, your application is evaluated using the same stored scores. You are not getting two separate evaluations. You are getting the same score twice.

If the algorithm rejects you once, it rejects you everywhere.

The researchers call this the "algorithmic blackball." One bad score locks you out of every company that shares the same vendor. You never find out why. You never get a second chance. You just stop hearing back.

They ran a large-scale simulation using real applicant data. The result: over 40,000 job advances were lost because applicants who would have succeeded at one company were screened out by an algorithm calibrated for a different one.

Then they measured who gets hit hardest.

25.87% of Black applicants were routed into algorithmically discriminatory hiring processes. 14.74% of Asian applicants. These are not hypothetical projections. These are rates measured in deployed, real-world hiring systems used by some of the largest employers on earth.

The same algorithm. Applied across companies. Producing the same racial disparities at every one of them.

This is already in the courts. Mobley v. Workday is a federal class-action lawsuit alleging that AI hiring tools systematically discriminate against older, Black, and disabled applicants. The case is ongoing.

In Europe, the EU AI Act classifies hiring algorithms as high-risk AI systems by default. Compliance requirements take effect August 2, 2026. Weeks away.

In the United States, there is no equivalent federal law.

The researchers make four recommendations. Measure adverse impact at the position level. Strengthen cross-employer surveillance. Monitor risks from algorithmic concentration. Create legal pathways for independent researchers to access hiring data.

The last one carries an implicit warning. This study was only possible because Pymetrics voluntarily shared its data. Most vendors would prefer their algorithms remain opaque.

The next time you apply for a job and never hear back, the rejection may not have come from a human. It may have come from a score you received 330 days ago, at a company you have already forgotten, for a role that had nothing to do with the one you just applied to.
图片
18 148 20.2K
DeFi狙击手 | Ai🕊️ 加密 @bi_9527zx · 2026年06月25日 01:59
全球首个开源 Agentic 视频生产系统来了!

OpenMontage 把你的 AI 编程助手直接变成完整视频制作工作室!

它能把 Claude、Cursor、Codex、Hermes Agent 这类 AI 编程助手,直接当视频制作工作室用。

有 12 条不同类型的生产线,52 个工具,500 多个 agent 技能。

从调研、写脚本、生成素材到后期合成,全程让 AI 自己跑。

支持用真实免费素材,也能纯 AI 生成。而且是完全开源的,成本能压得很低(有演示案例只花了不到两块钱)。

仓库地址:
https://github.com/calesthio/OpenMontage

感觉这个方向挺新的,有兴趣的可以去 star 一下。
97 51 20.1K
小小东 AI @xiaoxiaodong01 · 2026年06月25日 09:46
GPT2 x 九宫格 x 十六宫格 x 格子 x 美学提示词

熬了100组女生这种风格的提示词
深深的觉得,女孩子才是上帝的作品
(如果不用生孩子、不来大姨妈)
女孩子真的太美了

暴论一条:
今后摄影行业,旅拍之类的行业,危!

使用建议:
垫图,然后灵活佐料,保准你收获一大筐美图。

发圈再也不费力!

港真,这些涂鸦提示词,集合起来,都可以做一个app了。

灵得很!
图片图片图片图片
37 12 10.3K
娜美知识库 其他 @fhwofjow51260 · 2026年06月25日 12:13
这些年收藏夹里存过无数资源网站。

但大部分要么没更新,要么链接失效,要么广告比内容还多。

如果只能推荐一个资源导航站,我大概率会选 FMHY。

链接:https://fmhy.net/ https://x.com/fhwofjow51260/status/2070118124859670800/photo/1
图片
8 47 22.7K
Davidzhu AI @DavidzhuLife · 2026年06月25日 10:18
我一个女同事,01年的,各方面都属于顶尖美女,特别文艺的那种,眼睛干净得像没被污染过。今年她陷进一段感情里,怎么都出不来。

对方明显就是个渣男,十有八九早就有女朋友了,还隔三差五跑回来骚扰她,从不给任何承诺,专说些戳心窝子的话,比如:“我要是突然结婚了,你会不会难过?”女孩每次听完都崩溃。

还经常玩消失,隔段时间又冒出来,想尽办法约她开房,各种磨蹭、撩拨,就想把她睡了。可我这同事特别传统,好几次了,也就亲亲、用用手,从来没让他得逞。

昨天她跟我描述说:“他想当我哥哥。”我直接笑出声🤣

哪有哥哥想睡妹妹的?这姑娘也太单纯了!
44 2 30.4K
Meme大神 其他 @meme_god · 2026年06月26日 04:00
发现一个牛B的钱包地址,在BSC链上,花181U,买入大金狗 $HDAO Meme币,赚了0.3万U相当于2万人民币,16倍回报!

他的钱包地址:
https://gmgn.ai/bsc/address/C7KoyPop_0xaa07af6944cb5117bd548ae8c75aedbfc5dc5bfe

$HDAO 代币创建于7天前,HypeDAO叙事,历史最高市值100K,持有地址462,其中有10位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 04:00
发现一个牛B的钱包地址,在SOL链上,花61U,买入大金狗 $Greenland Meme币,赚了0.1万U相当于0万人民币,22倍回报!

他的钱包地址:
https://gmgn.ai/sol/address/C7KoyPop_HytCavJKtjSAp8gTmywLnLR5JwPdaQsNvZm9VsXm3oRZ

$Greenland 代币创建于1天前,greenland energy fan叙事,历史最高市值243K,持有地址511,其中有3位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 04:00
发现一个牛B的钱包地址,在SOL链上,花75U,买入大金狗 $STARMIND Meme币,赚了0.5万U相当于3万人民币,67倍回报!

他的钱包地址:
https://gmgn.ai/sol/address/C7KoyPop_8JLaADywkq9r9gUZtzu8NtZ5wpQXEHqjf8bnWSkyuiVN

$STARMIND 代币创建于2天前,StarMind叙事,历史最高市值106K,持有地址2096,其中有11位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 04:00
发现一个牛B的钱包地址,在SOL链上,花54U,买入大金狗 $VALORA Meme币,赚了1.1万U相当于7万人民币,201倍回报!

他的钱包地址:
https://gmgn.ai/sol/address/C7KoyPop_HfSTL21pcrpWUtBSDhq1JdrRUXb8BZotYqDiXXAp3YUR

$VALORA 代币创建于1天前,Valora叙事,历史最高市值510K,持有地址1576,其中有3位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 04:00
发现一个牛B的钱包地址,在SOL链上,花67U,买入大金狗 $piss Meme币,赚了0.1万U相当于0万人民币,18倍回报!

他的钱包地址:
https://gmgn.ai/sol/address/C7KoyPop_8wvqvPt1DDdjdghpMpp7ueQFUL5Js5zux4pPeRFXWteB

$piss 代币创建于1天前,pisscoin叙事,历史最高市值142K,持有地址683,其中有6位KOL在车上
0 0 0
GitHubDaily AI @GitHub_Daily · 2026年06月25日 07:30
很多朋友对量化交易感兴趣,但面对复杂的金融理论、数学公式、策略代码,通常不知道怎么上手。

可以先看下《XQuant:人人都是量化交易员》这本开源书籍,即便没有专业背景也能看懂。

它从零开始讲量化交易,每个章节配有动手实验,边读边练,不是纯理论灌输,而是跟着一步步敲策略代码。

在线阅读:https://xingwudao.github.io/xquant-beginner/

书稿和练习分开维护,正文在本仓库直接阅读,对应的实验代码和笔记放在配套的 xquant-learning 仓库里,结构很清晰。

适合想系统了解量化交易但又怕被门槛劝退的朋友,可以跟着书教程慢慢上手。
图片
49 107 21.6K
数字生命卡兹克 AI @Khazix0918 · 2026年06月25日 07:30
8 15 21.5K
李岳 AI @liyue_ai · 2026年06月25日 07:29
兄弟们,
分享一下我的GPT Image 2出图工作流程🥳

这套流程下来,很少需要抽卡才能出美图。

你只需要一个idea,剩下的交给GPT帮你实现。
31 21 24.3K
RootData融资 其他 @rootdata · 2026年06月25日 00:00
【融资】AllScale 完成 战略融资,融资 金额未披露
下一代加密货币/法币银行
投资方:Animoca Brands
🔗 https://cn.rootdata.com/projects/detail?k=MTczMDk=
📰 来源:https://x.com/animocabrands/status/2070002108187730192?s=20
图片
0 0 0
Nav Toor AI @heynavtoor · 2026年06月25日 09:12
A philosophy professor at UC Berkeley built one of the most useful tools on the internet.

Not a developer. Not a startup founder. Not a tech company. A philosophy professor named John MacFarlane.

He wrote it in Haskell. In 2006. He still maintains it today. Twenty years later.

It is called Pandoc. The Swiss Army knife of documents.

You give it any document in any format. It converts it to any other format. One command. Seconds.

Word to PDF. Done.
Markdown to PowerPoint. Done.
LaTeX to Word. Done.
HTML to ePub. Done.
Jupyter notebook to PDF. Done.
Word to Markdown. Done.
PowerPoint to Markdown. Done.
Excel to Markdown. Done.

50 plus formats. Any direction. One tool.

pandoc thesis.docx -o thesis.pdf

That is it. One line. Your 300-page thesis converted. Formatting preserved.

Here is what this replaces:

A PhD student at Berkeley converting a thesis from LaTeX to Word. By hand: 6 hours. Pandoc: 3 seconds.

A novelist in Brooklyn converting a manuscript to ePub for Kindle. By hand: two days. Pandoc: one command.

A startup in Chicago migrating 200 HTML blog posts to Markdown. By hand: a full week. Pandoc: 4 minutes.

A professor at MIT turning 200 Markdown lecture notes into a PowerPoint deck. By hand: 2 hours. Pandoc: one command.

Here is what online converters charge for the same work:

Zamzar: $25 a month.
CloudConvert: $8 a month.
Smallpdf Pro: $15 a month.
Adobe Acrobat Pro: $239.88 a year.

Every one of them uploads your documents to their servers. Your thesis. Your manuscript. Your private notes. Sitting on someone else's machine.

Pandoc runs on your laptop. Nothing uploaded. Nothing sent anywhere.

44,997 stars on GitHub. GPL-2.0 license. Version 3.10 shipped June 4 2026.

Here is the wild part.

Pandoc powers R Markdown. Pandoc powers Jupyter Book. Pandoc powers Quarto. Every time you export a notebook to a PDF or render a research report, Pandoc is probably running underneath.

The standard of document conversion on the internet was built by one philosophy professor in his spare time.

In 2006, John wanted to write his lecture notes in a lightweight format and export them to Word, HTML, and PDF. He had never written a line of Haskell in his life. Pandoc was his first Haskell program.

He has shipped 14,505 commits since then. He co-wrote the CommonMark standard. He still teaches philosophy at Berkeley. He still ships Pandoc himself.

Microsoft did not build it. Adobe did not build it. Google did not build it.

One philosophy professor. Twenty years. Forty-five thousand stars.

Your documents. Your formats. Your machine. One command.

The week you used to lose to file conversion is back in your hands.

(Link in the comments)
图片
15 110 22.0K
Adam也叫吉米 AI @Adam38363368936 · 2026年06月25日 10:09
我靠,这个视频我还以为是真人实拍😱

怼脸拍,这么真实的吗?能看出AI痕迹吗朋友们 https://x.com/Adam38363368936/status/2070086873046024576/video/1
18 6 11.9K
Dr. Moyu|摸鱼局长 加密 @Jason23818126 · 2026年06月25日 12:04
跟着特朗普买股票,靠谱吗?

他买了戴尔,3 个月后五角大楼给了戴尔 97 亿美元合同,股价涨了 107%

所以我在 Bitget AI 黑客松做了一个系统:Macro Synthesis

它用 8 个 AI Agent,把特朗普持仓、政策风向、国会交易、公司财报和资金流放在一起,合成交易信号

比如特朗普推芯片本土制造,系统识别出 Micron 是 HBM 核心供应商,并结合政策、资金和基本面打分。当天 $MU 涨了 11%

系统不是看到新闻就追,而是让多个 Agent 交叉验证:
特朗普有没有持仓,国会议员有没有买,公司高管有没有加仓,财报撑不撑,现在贵不贵
多票通过,才进入候选

后面还有 Regime 引擎负责择时:
高于 50 分进场,跌破 38 分离场,中间留缓冲,避免被正常回调洗出去

美股休市后,Night Watch 会继续扫描隔夜风险
新闻不停,风控也不能停

回测 $MU 两个半月:
净赚 551 美元
Sharpe 2.20
胜率 67%

Macro Synthesis 不预测涨跌
它只是把总统在做什么、国会在买什么、政策往哪吹、资金有没有跟,拼成一个更有数据重量感的判断

开源:https://github.com/jasonlee16888/macro-synthesis
在线试用:https://jasonlee16888.github.io/macro-synthesis/

Bitget AI 黑客松我已经提交了,如果你也感兴趣想手搓一个项目,现在还来得及

这次没报名也可以直接提交参赛,截止 6月25日

总奖池 50,000 USDT,一等奖 6,600 USDT
有效提交 + 发帖,还能额外拿 50 USDT

提交链接:
https://docs.google.com/forms/d/e/1FAIpQLSfIMhoVk-ofbQs0PNq3ijfTsMlqCMyllzpWPVKrWtfus7Cafw/viewform?usp=send_form
@Bitget_zh #BitgetHackathon
59 36 23.5K
娜美知识库 其他 @fhwofjow51260 · 2026年06月25日 12:03
被低估的养老赛道

视频号的中老年流量,简直像被谁故意藏起来一样,一旦盯上,出单速度能把你吓一跳。养生类高佣商品随便挂,单价不低,用户下单也不犹豫。

最夸张的是,不用直播,不用露脸,甚至不用和任何人互动,只靠橱窗就能稳定成交。越冷门的赛道,越容易捡钱。
评论区获取教程👇 https://x.com/fhwofjow51260/status/2070115581559476666/photo/1
图片图片
16 21 22.8K
Meme大神 其他 @meme_god · 2026年06月26日 01:00
发现一个牛B的钱包地址,在BSC链上,花117U,买入大金狗 $金狗 Meme币,赚了0.4万U相当于3万人民币,36倍回报!

他的钱包地址:
https://gmgn.ai/bsc/address/C7KoyPop_0x2fc9951db75d8ffe8972d53fd413544d9f97de8e

$金狗 代币创建于2天前,GOLD DOG叙事,历史最高市值547K,持有地址1786,其中有3位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 01:00
发现一个牛B的钱包地址,在BSC链上,花76U,买入大金狗 $黄金时代 Meme币,赚了0.1万U相当于0万人民币,14倍回报!

他的钱包地址:
https://gmgn.ai/bsc/address/C7KoyPop_0xe8ee215209debbc29bb5a6f2f02ffc7e14d35b69

$黄金时代 代币创建于2天前,黄金时代叙事,历史最高市值194K,持有地址1085,其中有4位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 01:00
发现一个牛B的钱包地址,在BSC链上,花57U,买入大金狗 $不死鸟 Meme币,赚了0.1万U相当于0万人民币,22倍回报!

他的钱包地址:
https://gmgn.ai/bsc/address/C7KoyPop_0x8476bae8aeb6e87f7a83eef6a3580076d0d14338

$不死鸟 代币创建于1天前,不死鸟叙事,历史最高市值165K,持有地址1488,其中有5位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 01:00
发现一个牛B的钱包地址,在BSC链上,花366U,买入大金狗 $SPACEMOON Meme币,赚了9.6万U相当于69万人民币,262倍回报!

他的钱包地址:
https://gmgn.ai/bsc/address/C7KoyPop_0xb43a024d5b4d63cd1da5d04cf2d85bf2262ff1b9

$SPACEMOON 代币创建于9天前,SpaceMoon叙事,历史最高市值606K,持有地址2187,其中有33位KOL在车上
0 0 0
Meme大神 其他 @meme_god · 2026年06月26日 01:00
发现一个牛B的钱包地址,在SOL链上,花70U,买入大金狗 $Chameleon Meme币,赚了0.3万U相当于1万人民币,37倍回报!

他的钱包地址:
https://gmgn.ai/sol/address/C7KoyPop_6FB1u619obJ8kbtAo7yhBp2FrUr42Y7jGFReKvUSgC1x

$Chameleon 代币创建于9天前,Meccha Chameleon叙事,历史最高市值302K,持有地址940,其中有4位KOL在车上
0 0 0
0 时间范围 点赞 > 分类 排序
历史账号
默认展示全部账号;可展开上方账号区多选,或用「分类」下拉按类筛选,选好后点右上「更新所选」开始拉取历史爆文。
(本页面独立,需手动更新才会爬取,不浪费 API)
⚙️ 设置
更新于 2026-06-26 07:30 UTC
📡 监控账号
🕐 抓取参数
小时
小时
💰 价格展示代币
🐊 Meme大神
扫描SOL/BSC热门代币,自动发现金狗钱包,入库到爆文列表「其他」分类
加载状态中...
小时
U
U
条/链
📱 自媒体 API 设置
Threads
币安广场
微信公众号
推特数据 API(twitterapi.io,会员默认数据源)
爬取推文/账号的主力数据源 · 注册:twitterapi.io ↗
🤖 AI 大模型 API(改写/翻译,会员默认 uau.cc)
用于推文 AI 改写功能(兼容 OpenAI 接口格式)· 注册:uau.cc ↗
夸克网盘 Cookie(用于转存)
用于一键转存推文中的夸克分享链接到你的网盘
✍️ AI改写提示词
🔐 修改账号密码