Filter
Exclude
Time range
-
Near
19 Aug 2025
ファボがあってTwitter API無料でクソTwitterClientが量産してたのが13年前って早すぎィ!
1
3
213
5 Aug 2025
Friends, here's something you can show as an example of how @Grutector will approximately work, which will be able to detect flip-flops in X users about whom other X users ask the AI bot 👀 The text is maximally simplified for general understanding, it wasn't simplified by me @GrutaPig , and there are a number of inaccuracies - but no one will notice them anyway 😁 The release of @Grutector will happen soon 👀 ————— System Architecture 1. Entry Point (Front Door) Everything starts here: main.go in Go launches the application, sets up tools (DI-container), starts the actor system, and ensures proper shutdown if necessary. Like turning the key in the ignition lock - and we're ready to go! 2. Actor System (The Brain Crew) Two key actors: - TwitterWatcherActor - monitors mentions (@Grutector), polls notifications, filters spam, and initiates processing. Always on alert. - ProcessingActor - manages the pipeline, routing, and tracks state to ensure nothing gets lost. Like a shop foreman, oversees that everything goes according to plan. 3. Pipeline Services (Workflow Hub) The main processing engine: PipelineService handles data step by step, determines routes, and catches errors. This is where all the magic happens - transforming raw input into well-thought-out decisions without failures. 4. Domain Services (The Experts) - AnalysisService - analyzes content, forms responses (for example: “@blknoiz06 you probably forgot about the green tie!”), applies business rules. - NotificationService - sends updates, admin alerts, and tracks cases. 5. Infrastructure Layer (Tools & Storage) - TwitterClient - integration with X API (Twitter), handles authorization, limits, for sending messages, and more. - TelegramClient - admin interface for admin tasks (logging, monitoring, and commands). - SQL Database - stores user history, states, and configurations. Like a reliable safe for data. $GRUTA CA: 35t5DPbwJtB1tpGiSnqedLwQomi94BRKVDPyTRLdbonk
31 Jul 2025
You said your first words, dear @Grutector ! You will become not only the new AI agent of the $GRUTA project, but also the most sought-after toy for any X user! @Grutector will catch absolutely all X users in mid-air flip-flopping at the request of any user. If someone writes to you that they never bought memecoins, and you tag @Grutector - and if it finds a contradictory tweet, it will joke in response and provide that tweet. 👀 If a KOL writes that they always loved something, and you tag @Grutector and catch them. Just imagine how popular this toy could become! 😁 Today was the first demonstration response from @Grutector under the post by @a1lon9 , and the AI agent performed excellently. It quickly found the flip-flop 😁 Very soon, the release of @Grutector will take place, and everyone will be able to ask it about all X users 👀 I think the entire X space will buzz, and we'll see tags @Grutector under every second post on X 😁 But after the release happens and the agent's work is stabilized and brought to a normal state, paid features will also appear, for example, deep analysis of an X user. An example of such a deep analysis I also published today in an article. The research subject was again @a1lon9 :) I practically didn't edit anything in the analysis, and it will be refined. I was interested in publishing it as is - so that you can find errors, distortions, and then we can adjust similar reports according to your feedback. Here's the article with the analysis: x.com/dogtor_a1/status/19509… And I'll add that the money received for paid services - 50 percent will be directed to supporting the work of the $GRUTA team, and the other 50 percent to buying back and burning $GRUTA tokens. It will be very interesting soon ;) $GRUTA CA: 35t5DPbwJtB1tpGiSnqedLwQomi94BRKVDPyTRLdbonk
5
5
9
438
21 Apr 2025
拓展一下 代码实用技能。 快速了解一个博主 大v 或者kol 因为原来的 教程是要配合上 mcp ,我不想下载一大堆这些。 所以直接用最简单的方法来使用,mcp 也只是代码和 ai 跳过你链接上了而已,细节上还是不好把控。 直接开始 1️⃣下载 地址 github.com/script-money/apid… 2️⃣找到下载的文件,直接 解压 用编辑器打开这个 目录 apidance-py-sdk-main 文件夹下面新建一个 .env 复制这个进去 APIDANCE_API_KEY= 这个买的密钥 X_AUTH_TOKEN= 这个无所谓,如果你要用账号来回复别人才用的上--- 可以删除掉 密钥来这里买 doc.apidance.pro/ 3️⃣终端运行一下,下载个包 pip install apidance 4️⃣ 文件example.py 提供了具体的代码示例。 复制全部 给 gpt 让他帮你改代码 这一步不能省,不然到时候有问题,你让他改,他改不出来,先提前教一下 ai 5️⃣apidance-py-sdk-main 文件夹下面新建一个 随便名字.py 文件 在这里 写代码就行了。 中间还要调教一下 这是调教过程。 chatgpt.com/share/6806426e-6… 报错直接全部粘贴给ai 就行了,有问题,有想法都可以丢给他。 所以我直接贴成品了 --------------------------- import os import sys from datetime import datetime from apidance.client import TwitterClient from apidance.exceptions import ApiDanceError # 设置标准输出编码为 UTF-8 sys.stdout.reconfigure(encoding='utf-8') # 从环境变量中获取 API 密钥 api_key = os.getenv("APIDANCE_API_KEY") def get_recent_tweets(screen_name, tweet_count=3): """查询某个用户的最近推文,并包含时间信息和推文 ID""" try: # 使用 API 密钥初始化客户端 client = TwitterClient(api_key=api_key) # 获取用户信息 user_info = client.get_user_by_screen_name(screen_name=screen_name) print(f"用户信息:{user_info}") # 获取用户的最近几条推文 tweets = client.get_user_tweets(user_id=user_info.id, count=tweet_count) print(f"\n找到 {len(tweets)} 条推文:") for tweet in tweets: # 获取推文的时间戳并格式化 if isinstance(tweet.created_at, str): # 如果是字符串类型,使用 strptime 解析 created_at = datetime.strptime(tweet.created_at, "%a %b %d %H:%M:%S 0000 %Y") elif isinstance(tweet.created_at, int): # 如果是时间戳类型,转换为 datetime 对象 created_at = datetime.utcfromtimestamp(tweet.created_at) # 格式化时间为 YYYY-MM-DD HH:MM:SS formatted_time = created_at.strftime("%Y-%m-%d %H:%M:%S") # 打印推文 ID、时间和内容,确保正确处理无法编码的字符 print(f"推文 ID: { }") print(f"推文时间: {formatted_time}") print(f"推文内容: {tweet.text.encode('utf-8', 'ignore').decode('utf-8')}\n") except ApiDanceError as e: print(f"查询推文时出错:{e.__class__.__name__} - {e}") # 使用示例 if __name__ == "__main__": screen_name = "scriptdotmoney" # 这里填写你想查询的用户名 get_recent_tweets(screen_name) ----------------------------- 输出是这样的 找到 3 条推文: 推文 ID: 1707067956700836338 推文时间: 2023-09-27 16:21:31 推文内容: Crypto is scriptable money. You can use robots to earn more. I can tell you how to do it. 推文 ID: 1913531927963082872 推文时间: 2025-04-19 09:55:37 推文内容: 支持群友创业 OK 完成了基础的获取,调教,接下来就可以直接获取,一百条,或者两百条,某个人的记录,然后发给ai,让他给你分析了。 成品展示 来源 参考 x.com/scriptdotmoney/status/…
现在这行情只有 AI Agent 还在无情地输出 Alpha 消息了,写了个抓推文的 MCP server,一句话就能总结想要的信息。理论上 grok3 也能做这事,但它搜推文的功能不稳定。
2
1
3
427
Done with the logo, Overlays, banner, stream design package for my recent Twitter client based on his details🎇. Fully satisfied💯! #satisfied #package #illustrationart #banner #logo #overlays #streamwork #Commission #twitterclient #clientproject #showsomelove
6
470
Just released my Twitter client for Linux using Electron Explore the world of tweets with ease! Try it out🐦✨ 🔗GitHub: github.com/seetharaman52/twi… #TwitterClient #programming #developers #tech #startup #code #codinglife #coder #dev #webdeveloper #technology #freeCodeCamp
3
71
Wann Twitterclient der automatisch alle Beiträge von Spinnern mit Stolzflagge im Hintergrund automatisch ausblendet.
2
2
117
Here's my recent work of my client. If you need any kind of gaming and furry stuff..i can make it for you..as per your requirements Kindly Hit me up. . . #furry #twitch #Vtuber #apex #mobilelegends #pngtuber #3dmodel #instagram #twichclients #twitterclient #furry #logo
2
151
Drag your screen closer and check him out his classic Knitted jacket. All we need is your Body measurements,knit designs of your choice ,an alert from you and your Location Produced from Benue and delivered to Lagos #twitterclient #benueknitter @UshaAyaka
3
1
5
178
Ik weet niet of het een accessibilityding is, of een gebruikersfout, maar het lukt mij niet meer om op tweets (ja ik blijf ze noemen..) te antwoorden. Wat doe ik fout, vanuit de standaard iPhone twitterclient gezien #WantIetsAndersWerktNietMeer
2
1
120
Mac版TwitterClientの何が良いってデフォルトのタブを最新ツイートに切り替えられる所なんだよな おすすめとかいうクソを見ないで済む
2
170
16 Jul 2023
Replying to @elonmusk
but japanese user are inconvenienced. Search BAN , unreasonable account freezes, and freezes that are never lifted. Japanese people enjoyed Twitter using their favorite TwitterClient when the API was open. In particular, there were so many people using UserStream. This may be a characteristic of only Japanese. So I wonder if UserStream was deemed to have low usage by Twitter Inc. as a whole and the API was removed. I have seen many friends leave Twitter for this very reason. TweetDeck, which was the only one I could use like UserStream, is now a KUSO Application, and Twitter is becoming more and more difficult to use. If the number of people decreases, fewer companies will be willing to advertise. And in fact, I feel that the number of advertisements that are displayed are worse than before. Furthermore, the abnormally high frequency of advertisements is also accelerating the separation of users, and this is creating a vicious cycle in which more and more friends are leaving the site. Please help us bring back a little bit of the open and free Twitter, although it may not be the same as it used to be. I know it's a little bit presumptuous of me to speak on behalf of the Japanese people, but we all feel the same way. However, Japanese people are shy and only express their opinions in tweets. I would like to see more voices of Japanese people, who are heavy users of Twitter, heard.
3
4
22
7,039
Twitterclient für high performance user wie Sixtus und Lobo
39
REVIEWS LIKE THIS ☺️ #twitterClient ❤️
1
3
120
公式TwitterClient、定期的に通知バルーンが消えなくなるのクソだなぁと
2
130
5 Feb 2023
eigentlich wollte ich grad zu twitch, hab aber zu schnell enter gedrückt. naja seit mein twitterclient auf´n handy nicht mehr funktioniert is twitter irgendwie weg.... ¯\_(ツ)_/¯
2
52
Replying to @danielrehn
Hab in 10 Jahren keine Werbung gesehen 🤷‍♂️ ausser eben im Twitterclient selbst dann und wann
1
2
108
Fue bonito mientras no duró. 🤡 #tweetbotdeadagain #twitterclient
1
2
4,838
Kaum geht der 3rd P. Twitterclient nicht, unsagbares Verlangen alle 2min Twitter zu checken.
1
3
222