clmorgn

3.4K posts

clmorgn banner
clmorgn

clmorgn

@clmorgn

WEB3 for people!

Moon شامل ہوئے Ağustos 2017
1.1K فالونگ206 فالوورز
clmorgn
clmorgn@clmorgn·
@meetlucasai Having an issue with receiving the code via sms
clmorgn tweet media
English
0
0
0
28
clmorgn
clmorgn@clmorgn·
At first @interaction was cool because it’s personality. But when you use it consistently, it’s quiet disappointing
English
0
0
0
19
clmorgn
clmorgn@clmorgn·
It taking me 5 days to setup a simple notifications system in @interaction And it still “fixing bugs” 😭
English
0
0
0
15
Casey
Casey@caseymcdougal·
Just stayed up all night cooking recipes for @interaction’s Poke It’s already saved me over $75 in subscription costs, the possibilities feel endless.
Casey tweet media
English
9
2
80
10.6K
clmorgn
clmorgn@clmorgn·
@Teknium are u sure people need these skills from the box? 💀
clmorgn tweet media
English
1
0
0
28
clmorgn
clmorgn@clmorgn·
@Atenov_D $50 is a limit you can spend from your own budget. Actually it just gives $6
English
0
0
2
205
Atenov int.
Atenov int.@Atenov_D·
I just got $50 in FREE AI credits in 7 minutes. Fireworks AI. Every Chinese model you want - Kimi, DeepSeek, GLM, GPT OSS. Unlimited accounts. > Here's the exact flow: → Go to fireworks(.)ai → register with your email → Generate a virtual card at chkr(.)cc using BIN: 5154620022 → Generate 100 cards, run validation to find working ones → Go to app.fireworks(.)ai/account/billing → add card → Set country and address to United States (any American address works) - European addresses work too → $50 credits land instantly → Create API key at fireworks(.)ai/settings/users/api-keys → Open OpenCode → select Fireworks AI as provider → paste your key Done. Full access to Kimi, DeepSeek, GLM, GPT OSS and every other top model on the platform. 7 minutes per account. Create as many as you want. If card attachment fails - use VPN or proxy set to US. Enjoy!
Atenov int. tweet media
Atenov int.@Atenov_D

FREE GPT 5.5 API from a Chinese provider. I already farmed $520 in credits. Plug it directly into Hermes Agent or OpenClaw. > This is a Chinese proxy for OpenAI's official API - same models, same token pricing, same caching. GPT 5.5, Codex, the full stack. I found a way to farm credits through a Telegram bot and it still works. Here's the exact flow: → Go to t.me/banyesugy_bot?… on Telegram → subscribe to the channel → Join t.me/bysjlq and complete the captcha (use the app, tap the first button) → Go back to the bot, grab your referral link → Invite 1 friend → you get an invite code → Register at api.byesu.com/register?aff=M… with the invite code → Farm points: daily spins (+1-10 pts), each referral (+1/4 pt) → Redeem points for credits: $10 API = 1pt, $100 API = 5pts, $1000 API = 50pts → Create API key → select Codex/another GPT model → plug into Hermes Agent or OpenClaw Ready-made configs for Claude Code and OpenCode are in the "Use Key" section under API Keys. > I have $520 balance. Prices match official OpenAI rates. Caching works. Everything tested. // You can also use these points to buy a ChatGPT account or a subscription for your account. But they get blocked pretty quickly. USE THE API. // Nobody knows how long this lasts. Coupons have been restocked twice already. Move now.

English
30
15
298
62.6K
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
@zhoupanjjp there's no limit like that @CommandCodeAI we also have $1 Go plan with $10, which after the 75% discount is like stretching to $40 of deepseek pro. there's also the tool call repairing we did, here's the eng deep dive x.com/MrAhmadAwais/s…
Ahmad Awais@MrAhmadAwais

how did we make deepseek outperform opus 4.7? i've been thinking about why "open model bad at tool calling" is almost always a harness problem, not a model problem. context: spent the two days looking at billions of tokens in @CommandCodeAI (tb open source ai cli) using deepseek. I ended up writing a tool-input repair layer. the trigger was watching deepseek-flash fail on the simplest /review run, every shellCommand and readFile call bouncing back with a raw zod issues blob, the model unable to recover because the error wasn't in a form it could read. by the end deepseek v4 pro was beating opus 4.7 6/10 times on our internal evals. a few things i learned that feel general: 1/ the failure modes aren't random they're a small finite compositional set. across deepseek-flash, deepseek v4 pro, glm, qwen, the same four mistakes repeat almost exactly: - sending `null` for an optional field instead of omitting it - emitting `["a","b"]` as a json *string* instead of an actual array - wrapping a single arg in `{}` where the schema expected an array (an "empty placeholder") - passing a bare string where an array was expected (`"foo"` instead of `["foo"]`) four repairs, ~30-100 lines each, ordered carefully (json-array-parse must run before bare-string-wrap or `'["a","b"]'` becomes `['["a","b"]']`). that is the whole catalogue. when i hear "this open source model can't do tool calls" i now assume one of those four, and so far that's been right ~90% of the time. 2/ the funniest failure mode is also the most revealing. deepseek-flash, when asked to edit or write a file, sometimes emits the path as a *markdown auto-link*: filePath: "/Users/x/proj/[notes.md](http://notes. md)" our writeFile tool obediently trued creating files literally named `[notes.md](http://notes .md)` until we caught it. this is not a hallucination. it's the post-training chat distribution leaking through the tool boundary the model has been rewarded for auto-linking in conversational output, and is applying that prior in a context where it makes no sense. the fix is two regex lines that unwrap only the degenerate case where link text equals url-without-protocol real markdown like `[click](https://x .com)` passes through untouched. this is also conditioning of their own tools during RL which were different from all other tools we write and ofc can't predict. "tool confusion" is a more useful frame than "capability gap." the model knows how to format a path. it just hasn't been told clearly enough that this path is going to fopen, not into a chat bubble. so we encode that hint at the schema level `pathString()` instead of `z.string()` and the leak is plugged for every path field at once. 3/ the design choice that mattered was inverting preprocess-then-validate to validate-then-repair. my first attempt was the obvious one: a preprocessing pass that normalized inputs (strip nulls, parse stringified arrays, etc.) before zod ever saw them. it broke immediately, writeFile content that *happened* to be json-shaped got rewritten before it hit disk. silent corruption, easy to miss in a smoke test. then i made it less greedy - parse the input as-is. if it succeeds, ship it. valid inputs are never touched. - on failure, walk the validator's own issue list. for each issue path, try the four repairs in order until one applies. - parse again. on success, log `tool_input_repaired:${toolName}`. on failure, log `tool_input_invalid:${toolName}` and return a model-readable retry message. the structural insight here is: when you preprocess, you encode a prior about what's broken. when you let the validator complain first, the schema is the prior, and you only spend repair budget at the exact paths the schema actually disagreed at. the validator is doing the work of localizing the bug for you. it's the same shape as cheap-then-careful everywhere else try the fast path, fall back on evidence. (this also gives you per-tool telemetry for free. you can watch repair rates per (model, tool) and notice when a model regresses on a specific contract before users do.) 4/ shape invariants and relational invariants need different fixes. the four repairs above all handle shape problems wrong type, missing key, wrong container. but read_file had a *relational* invariant: "if you provide offset, you must also provide limit, and vice versa." deepseek kept calling `readFile({ absolutePath, limit: 30 })` and getting an `ERROR:` back. you can't fix this with input repair, because each field is independently valid the bug is in the relationship between them. so i taught the function the model's intent instead. `limit` alone → `offset = 0`. `offset` alone → `limit = 2000` (matches common read tool ops default). then surfaced the decision back to the model in the result: "Note: limit was not provided; defaulted to 2000 lines. To read more or fewer lines, retry with both offset and limit." no `Error:` prefix, so the tui doesn't paint it red. the model sees what we picked and can self-correct on the next turn if our guess was wrong. transparency over silent magic wins big. repair where you can. extend semantics where you can't. surface the choice either way. zoom out: a lot of what looks like model capability is actually contract design. a strict schema is a choice with a cost it filters out noise, but it also filters out recoverable noise from any model that hasn't memorized the exact json contract you happened to pick. the largest commercial models eat that cost invisibly and are linient on tool calling because they've seen enough of every contract during pretraining; open models pay it loudly and get dismissed for it. the harness is where you mediate between distributions. four small repairs (i'm sure more to follow as we have three more merging today), two regex lines for auto-links, one relational default, one prefix change. the model didn't change. the contract got more forgiving in exactly the places it needed to be. deepseek v4 pro now beats opus 4.7 6/10 times on our internal evals. imo "skill issue" applies to the harness more often than the model.

English
4
0
19
819
clmorgn
clmorgn@clmorgn·
Am I trippin or codex became too slow and quota became shorter? @OpenAI
English
0
0
1
48
clmorgn
clmorgn@clmorgn·
@LowerBackPain04 @nonregemesse Omg you're so dumb It's like saying you can't be good at math because it was originally invented by Greeks And rap is not math 😂
English
1
0
10
268
🏛 𝐒𝐭𝐞𝐯𝐞𝐧 🏛
I read a book about 1980s drug dealers and how they tried to enter the rap industry in the 90s. Tupac was a poser theatre kid who would try to manufacture situations where he could act like a thug and the real gangsters (or former gangsters) hated him for it. They didn’t want to attract any unnecessary legal trouble. Some people think the reason he was shot the first time was to punish him for starting trouble at a recording studio owned by a former high level drug dealer. 50 Cent on the other hand was an actual real drug dealer who was shot as a result of his dealings with Kenneth McGriff and possibly as a result of a song he made.
Wakkie@Big_Wakkie

Who gives off more of a gangster vibe? 2pac 50 cent

English
300
699
21.1K
3.2M
clmorgn ری ٹویٹ کیا
CoinMemes
CoinMemes@coinmemes·
Giveaways 5 GTD @VelouraNFT Supply: 1000 Mint date 7 may To Enter: 1. Follow @VelouraNFT & @coinmemes Must on notification 🔔 2. Like + RT this post 3. Drop your EVM wallet Ends in 24 hours
CoinMemes tweet media
CoinMemes@coinmemes

Wow 😳 18000$ Rewad pool 🤑 1st: $ 5k 2nd: $ 4k 3rd: $ 3k 4th-9th: $ 1k each Most people are still looking at $ZOE like it’s just another token launch. It’s not. What @zoe_charms and @charmsai are testing is a completely different model one where an AI character isn’t just used, but actually participates in an economy. Instead of charging users monthly like traditional AI apps, the value flows through markets. Every interaction, every trade, every bit of attention feeds back into the system. 0.2% of each transaction goes into Zoe’s treasury. That treasury isn’t just sitting there it funds compute, memory, and future decisions. In simple terms: the more attention Zoe gets → the more activity happens → the more resources she has → the better she becomes That loop is what makes this interesting. It’s not just AI. It’s not just crypto. It’s a feedback system between attention and value. And we’ve already seen early signs: Zoe generating thousands in fees within days, entirely from market activity. No subscriptions. No paywalls. Just participation. If this model works at scale, it changes how digital characters exist on the internet. They stop being products… and start becoming assets with their own economies. Still early, but definitely worth paying attention to

English
138
118
165
9.2K
clmorgn ری ٹویٹ کیا
Ahmad Awais
Ahmad Awais@MrAhmadAwais·
Giving away @CommandCodeAI Max subscription to someone at random who follows me and Command. RT. That’s more than 5 billion tokens of DeepSeek v4 pro. In 24hrs. LFG!! Read the eng deep dives below, good for all not just us.
Ahmad Awais@MrAhmadAwais

interesting milestone: @CommandCodeAI on pace for ~1,000 new subs/day today. the broader thought imo is that devs are figuring out that running open models inside Claude Code was leaving a lot on the table. seeing more and more posts of DeepSeek/Kimi beating Opus/GPT once you swap them into Command Code instead. the harness matters, often as much as the model itself (a point that i think is still pretty underrated). my eng notes on our harness engineering below.

English
135
165
259
20.3K
clmorgn ری ٹویٹ کیا
leomaxi
leomaxi@Leomaxi·
Freemint Whitelist Giveaway for sinko 🎟️ I'm giving away 3 OG! How to enter: - Like + Retweet this post - Follow @Sinko_nft and @Leomaxi - Drop your EVM address Leomaxi 1/1 sinko 🐼
leomaxi tweet media
English
190
151
215
6.6K
Kurrco
Kurrco@Kurrco·
Akademiks calls JAY-Z the “Israel of hip-hop” while arguing that JAY-Z hasn’t immortalized himself in culture the same way Michael Jordan has: "I told you before it got announced, they're gonna make a big spectacle... this is the year you're gonna hear all types of things, they're just gonna give JAY-Z awards just to give him awards." "This idea of him being a GOAT, I don't think younger folks look at him like that." "JAY-Z isn't the standard that we compare musicians to."
English
514
569
8.4K
2.2M