Alberto 思辰

573 posts

Alberto 思辰 banner
Alberto 思辰

Alberto 思辰

@doregex

shipping from 🇮🇹 with 🍕 我在学习汉语 🇨🇳

Open Source Land Sumali Nisan 2012
551 Sinusundan161 Mga Tagasunod
Naka-pin na Tweet
Alberto 思辰
Alberto 思辰@doregex·
Today I am leaving Vietnam 🇻🇳 Food: 8.5/10 Landscapes: 9/10 Accommodations: 7/10 People: 8/10 Coffee: 10/10 Best place to stay considering all factors: Da Nang for food: Hanoi For countryside and relaxing: - Tam Coc (Ninh Binh) - Da Lat I almost always eat local food, but it’s a bit more expensive than Thailand 🇹🇭, but quantity of food is greater. Average price for a meal: 50-100k dong (2-4$) tea is always free! If you like soups and not to spicy food is better than Thailand, but I missed so much the pad see ew! To travel from north to south or viceversa I suggest you to take the night cabin buses. Monthly budget: 1K $, but I spent a little bit less You can easily stay on 800$ or less if you don’t travel a lot and you stay in the same place! Driving a motorbike is a bit crazy, but in cities like Da Nang roads are larger and there is less traffic! Heading to Kuala Lumpur now! #buildinpublic #digitalnomad
English
1
0
3
609
Ardent_Dev
Ardent_Dev@ardent__dev·
What's more valuable skill today? - Coding skills - Marketing skills
English
42
0
27
1.5K
Alberto 思辰
Alberto 思辰@doregex·
@omarvvvr Yes, tried for fun doing some task the old way again, felt amazing but it took me x5 the llm time.
English
0
0
0
13
Omar
Omar@omarvvvr·
Be Honest: Can you CODE without AI...?
English
92
3
52
3.4K
Alberto 思辰
Alberto 思辰@doregex·
I recently cancelled the github copilot plan, but there was a feature I was using a lot: auto commit generation. Since I want to have control on commits to keep a clear history I created a vscode extension to do exactly this. you can decide what llm provioder to use (even a local model). github.com/carbogninalber…
English
0
0
0
29
BlockedPath
BlockedPath@BlockedPaths·
@william_arin @doregex I believe dario or elon said they are bout 3 months behind. When we release a new model they distill their modes with it, Kinda cheating. Ive built a harness with deepseek.
English
1
0
1
19
BlockedPath
BlockedPath@BlockedPaths·
Kimi K2.7 did not impress me in the slightest. No where near 5.5 or deepseek.
English
27
0
52
13.4K
Alberto 思辰
Alberto 思辰@doregex·
After a couple of months of experimenting I kinda find a way to use them for 90% of coding tasks, even complex one. I don't know, but I find myself writing detailed prompts and create plans before implementing and in particular using subagents so that the main llm context window stays under 100k-150k tokens, above that chinese models in general starts to get confused (the attention is not where I need it to be) I use them mostly on existing codebases though, so maybe on new projects they might create worse code if they are not thoughtful of all the edge cases. One factor is that they achieve good results by thinking a lot, but the trend seems leaning towards optimization right now, see kimi2.7 code
English
0
0
1
31
William Arin
William Arin@william_arin·
@doregex @BlockedPaths Yes, but I'm not sure if they will catch up that quickly. Last december it felt like Chinese models lagged 4-5 months behind. But GPT 5.0 in september already understood intent very well, and 9 months later Chinese models are still not at this level I think.
English
2
0
1
12
Alberto 思辰
Alberto 思辰@doregex·
用 OpenCode 加这个插件,换成 DeepSeek: const DEEPSEEK_PROVIDER = "deepseek" const ARRAY_FIELD_HINTS = new Set([ "args", "arguments", "extensions", "files", "patterns", "paths", ]) function modelRef(model, provider) { const providerID = provider?.info?.id ?? provider?.info?.name ?? provider?.id ?? provider?.name const modelID = model?.id ?? model?.modelID ?? model?.name return `${providerID ?? ""}/${modelID ?? ""}`.toLowerCase() } function isDeepSeek(model, provider) { return modelRef(model, provider).includes(DEEPSEEK_PROVIDER) } function looksLikeArray(value) { const trimmed = value.trim() return trimmed.startsWith("[") && trimmed.endsWith("]") } function fieldLooksArrayLike(key) { if (!key) return false const lower = String(key).toLowerCase() return ARRAY_FIELD_HINTS.has(lower) || lower.endsWith("list") || lower.endsWith("array") } function fieldLooksPathLike(key) { if (!key) return false const lower = String(key).toLowerCase() return lower === "path" || lower === "filepath" || lower === "absolutepath" || lower.endsWith("path") || lower.endsWith("file") } function unwrapDegenerateMarkdownLink(value) { return value.replace(/\[([^\]]+)]\(https?:\/\/([^)]+)\)/g, (match, text, url) => { const urlWithoutProtocol = url.replace(/\s+/g, "") return text === urlWithoutProtocol ? text : match }) } function repairValue(value, key) { if (value === null) return undefined if (typeof value === "string") { if (fieldLooksPathLike(key)) return unwrapDegenerateMarkdownLink(value) if (fieldLooksArrayLike(key) && looksLikeArray(value)) { try { const parsed = JSON.parse(value) if (Array.isArray(parsed)) return parsed } catch {} } if (fieldLooksArrayLike(key) && value.length > 0) return [value] } if (Array.isArray(value)) return value.map((item) => repairValue(item)) if (typeof value === "object" && value) { if (fieldLooksArrayLike(key) && Object.keys(value).length === 0) return [] const repaired = {} for (const [childKey, childValue] of Object.entries(value)) { const next = repairValue(childValue, childKey) if (next !== undefined) repaired[childKey] = next } return repaired } return value } function repairArgs(args) { if (typeof args !== "object" || !args) return args return repairValue(args) } export default async function deepseekToolHarness() { const deepseekSessions = new Set() return { async "chat.params"(input) { if (isDeepSeek(input.model, input.provider)) deepseekSessions.add(input.sessionID) else deepseekSessions.delete(input.sessionID) }, async "experimental.chat.system.transform"(input, output) { if (!isDeepSeek(input.model)) return output.system.push([ "DeepSeek tool harness:", "- Tool arguments are consumed by programmatic APIs, not rendered as chat markdown.", "- Omit optional fields instead of sending null.", "- Send arrays as JSON arrays, not stringified arrays or bare strings.", "- Send file paths as plain strings; do not markdown-link path values.", ].join("\n")) }, async "tool.execute.before"(input, output) { if (!deepseekSessions.has(input.sessionID)) return const before = JSON.stringify(output.args) output.args = repairArgs(output.args) const after = JSON.stringify(output.args) if (before !== after) console.info(`tool_input_repaired:${input.tool}`) }, } }
English
0
0
0
41
Gracker
Gracker@Gracker_Gao·
GLM5.2 ......你这让我如何放心啊,Claude Code 没这问题
Gracker tweet media
中文
36
0
58
39.5K
Daniel Smidstrup
Daniel Smidstrup@DanielSmidstrup·
At this point if AI writes 90% of code, who even survives in tech??
English
222
4
238
38.7K
Alberto 思辰
Alberto 思辰@doregex·
@william_arin @BlockedPaths I mean, do you remember when models ask about the quality of the response or what you would change? that's the part that chinese models miss.
English
1
0
0
7
Alberto 思辰
Alberto 思辰@doregex·
Yes, but that comes at a cost of having gathered many months of user interaction to finetune the model in agent chat alignment, or only god know what is behind after you sent your prompt. I think the "magic" is either some part of the model trained to expand your prompt or another model doing that job. Who knows?
English
1
0
0
7
Alberto 思辰
Alberto 思辰@doregex·
No way you get a SOTA level of intelligence by selfhosting in a 6k hardware, you need like 150k$ server at least. You can run qwen 3.6 35B A3B on a consumer hardware at great speed quant 4bit or even 8bit smoothly, but you need to threat this agent as an implementer. By using a small amount of token from a sota model like gpt5.5 you can prepare detailed plans and give little room for small decision to the small models. There is this project that is promising btw: github.com/antirez/ds4
English
0
0
2
279
Matt
Matt@nzmrldev·
The Fable/Mythos news has me wondering how much AI access I should actually own locally. If a beginner had ~$6k to get into local models, what would you tell them to buy? Mac Studio? Mac mini? RTX 5090 build? Used dual 3090 rig?
English
49
0
30
6.6K
Hassan
Hassan@buildwithhassan·
my personal chinese coding model tier list from daily usage: tier 1: GLM-5 ≈ GLM-5.1 ≈ Kimi K2.6 > Qwen 3.7 Max (somehow the most expensive and not the best) tier 2: Qwen 3.7 Plus (under 200K context) > DeepSeek V4 Pro ≈ V4 Flash ≈ MiMo 2.5 Pro not there yet: MiniMax, Hunyuan testing K2.7 Code soon and GLM-5.2. ranking might change by morning.
English
39
6
418
35.3K
Hassan
Hassan@buildwithhassan·
kimi k2.7 code is so new that opencode doesn't have it yet
Hassan tweet media
English
25
1
438
30.7K
Alberto 思辰
Alberto 思辰@doregex·
@nalinrajput23 Deepseek is so cheap, you prepare the plan via gpt and let deepseek implement it. Currently I am trying to use kimi2.7 instead of gpt, let's see
English
1
0
0
72
Nalin
Nalin@nalinrajput23·
as a dev, which is the best Open Source AI model?
Nalin tweet mediaNalin tweet mediaNalin tweet mediaNalin tweet media
English
26
2
38
1.5K
Alberto 思辰
Alberto 思辰@doregex·
@sflorimm Building a linear app alternative fully opensource (apache 2.0) self-hostable with builtin agents. Now working on having task assigned to agents running in containers with opencode and your fav model
Alberto 思辰 tweet media
English
1
0
3
276
Floro S.
Floro S.@sflorimm·
I want to connect with more founders builders vibe coders AI enthusiasts UI designers If you’re someone building with AI right now, drop it in the comments and let's connect
English
297
5
315
23.1K
Alberto 思辰 nag-retweet
OpenRouter
OpenRouter@OpenRouter·
Introducing the Fusion API, the smartest compound model in the market. Fusion achieves Fable-level intelligence at half the price. How it works 👇
OpenRouter tweet media
English
587
1.5K
13.1K
4.8M
Alberto 思辰
Alberto 思辰@doregex·
@aditiitwt Overall (cost/intelligence)? I think deepseek v4 pro at max. The only thing you have to keep in mind is that if you are specific enough and prepare plan before implementing the code the difference from using closed SOTA models in negligible on standard tasks.
English
0
0
0
192
aditii
aditii@aditiitwt·
Guyys be honest, which is the best open source AI model? 1. Qwen 3.6 2. DeepSeek 3. GLM-5 4. Kimi K2.6
English
323
14
412
72.9K