What was the first Chinese sentence you fully understood without translating it in your head first?

I'm at that in-between stage where most of my reading still routes through English before it lands.

Then every now and then a sentence just goes in cleanly and I notice it happened. For those of you past that stage: do you remember your first one? What was the sentence and where did you hear or read it (native show, teacher, real conversation, random subway sign)?

reddit.com
u/Agile_Commercial9558 — 20 hours ago

What was the exact moment 了 (le) finally started to make sense to you?

I've been chipping away at Mandarin for a while and 了 keeps being the thing that resets me back to feeling like a beginner. Every explanation I read (change of state, completed action, both, neither)makes sense on paper and then evaporates the moment I try to use it in speech.

For those of you past that wall: was there one specific sentence, video, teacher moment, or piece of native content that made it click? Or did it just slowly stop being confusing over time?

Not looking for another explanation of the rules, more curious about the mental shift that happened for you.

reddit.com
u/Agile_Commercial9558 — 3 days ago

I will made a telegram group for learning chinese (mandarin|)

Hello,
Some people any level interested in a group for learning chinese ? I can put at disposition an openclaw specially (ai agent) dedicated in the group to teach, and we can do regular call / talk in the group / give resource. The idea is to mainly speak in mandarin an in Telegram.

Just ping me here

reddit.com
u/Agile_Commercial9558 — 5 days ago

which keyboard do you use on phone ?

Hello,

actually using the pinyin system to writing, i meet a hong kong one that use a difficult one were they write caracter kanzi by kanzi to write the caracter, i was thinking it could be very relevant to use it to speed up my process with kanzi. What are you using you and do you recommend it ?

reddit.com
u/Agile_Commercial9558 — 7 days ago

Wanted to share a small TypeScript project I built this week.

The idea: get a Telegram alert within 30 seconds of any new token launched on pump.fun, Raydium, Moonshot, Uniswap and a few other DEXs already filtered for honeypots, tax > 5%, high dev/sniper concentration, etc.

The hard part is usually the data plumbing every chain has its own decoders, every DEX has its own factory, and you need a way to flag suspicious contracts in real-time. I used Mobula's Pulse Stream V2 because the filters are applied server-side, so I just send one subscribe payload with my criteria and only receive tokens that match.

Architecture is intentionally minimal:

WS stream → dedup (sqlite) → quality gate → score → Telegram push

The score is a 0-100 heuristic adding points for holders count, socials, mint authority revoked, low dev concentration, etc. Nothing fancy, but useful as a first-pass filter.

Repo (MIT): https://github.com/Flotapponnier/pulse-sniper

Walkthrough: https://www.youtube.com/watch?v=e2eL26746Ew

Open to feedback particularly on the score weights, which arecurrently arbitrary. Curious what others use as quality signals on fresh launches.

reddit.com
u/Agile_Commercial9558 — 2 months ago
▲ 2 r/ethdev

Small TS project I built as a Mobula API exploration scans perp funding rates across 7 exchanges and pings Telegram when divergence > X% APR.

Architecture is pretty minimal: ws client with reconnect/backoff and heartbeat, pure-function APR annualizer (per-epoch rate × year_ms / epoch_ms), cooldown gate in SQLite to avoid Telegram spam, Telegraf for the bot side The interesting bit was that Mobula's WS sends all 7 venues' funding data in one message, which removed all the typical headache of managing 7 separate WS connections with different schemas.

Repo: https://github.com/Flotapponnier/funding-radar

Walkthrough: https://www.youtube.com/watch?v=FcpuLVCVGVg

Feedback welcome on the reconnect logic and the cooldown design.

u/Agile_Commercial9558 — 2 months ago

Was about to subscribe to yet another "autonomous AI agent" SaaS and realized my Claude Code subscription could already do what I needed.

Found an open-source wrapper (ClaudeClaw) that runs Claude Code as a background daemon:

  • Telegram bot front-end (text/voice/images)
  • Cron jobs for recurring prompts
  • Web dashboard

Zero API keys, zero extra billing. . 2 commands to install.

Recorded an 8-min walkthrough so others can reproduce it: https://www.youtube.com/watch?v=91zuX5AgxPw

Repo: https://github.com/moazbuilds/claudeclaw

u/Agile_Commercial9558 — 2 months ago
▲ 4 r/BlockchainStartups+2 crossposts

Something shifted this month and I don't think people realize it yet.

AI agents no longer need API keys. They pay per call from their own

wallet using x402 (HTTP 402 micropayments). You fund the wallet once,

the agent handles the rest.

I tested it with Claude Code + Mobula's MPP server. In a few minutes

my agent was pulling live prices on 90+ chains (Solana, Ethereum, Base,

Arbitrum…) and executing swaps on Jupiter, Uniswap and Raydium,

completely on its own.

No keys. No subscription. No rate limits. Calls cost fractions of a cent.

Setup video: https://youtu.be/egpFN0g8WdI

Repo: https://github.com/moazbuilds/claudeclaw

Docs: https://docs.mobula.io/guides/x402-integration-guide

This is what "agentic commerce" actually looks like. Curious what

others are building with x402.

u/Agile_Commercial9558 — 2 months ago

Been experimenting with letting Claude pull real-time market data instead of pasting CoinGecko screenshots into the chat every time I want to research a token.

The setup that ended up working:

claudeclaw open-source agent runner that uses your existing Claude subscription instead of burning API credits. Repo: https://github.com/moazbuilds/claudeclaw

Mobula skill plugs into the agent and gives it access to prices, market caps, holders, on-chain activity across chains. Skill: https://clawhub.ai/flotapponnier/mobula

Once wired up, I can ask things like "compare the holder distribution of these 3 tokens" or "which of my watchlist tokens had unusual volume in the last 4 hours" and it just… does it. No copy-pasting, no switching tabs.

5-min video walkthrough showing the setup end to end: https://www.youtube.com/watch?v=tkaXQMkvY8Y

What's been most useful for me is research workflows, the agent can chain calls (find token → check holders → check recent trades → summarize) which is annoying to do manually.

Curious if anyone else is building agentic research workflows for crypto. What skills/tools have you wired into yours?

u/Agile_Commercial9558 — 2 months ago
▲ 2 r/ethdev

Genuine question for the Solana traders here — the rug rate on new launches is brutal and I've been trying to systematize the filtering instead of relying on gut feel.

What's been working for me: scoring tokens by sniper/bundler concentration in the first blocks after launch. If a big chunk of supply was scooped up by coordinated wallets in the launch window, it's almost always a coordinated dump waiting to happen. That single signal alone catches a huge share of the obvious scams. I packaged the approach into an open-source scanner using the Mobula API (they expose the sniper/bundler data directly, which saved me from running my own indexer):

Repo: https://github.com/Flotapponnier/sniper-bundler

Video walkthrough: https://www.youtube.com/watch?v=ezpfG_Tc6A0

Detection logic explained: https://docs.mobula.io/almanac/detecting-snipers-bundlers

But I know I'm missing things. What signals are you using that I should add?

reddit.com
u/Agile_Commercial9558 — 2 months ago