Andrey S.

74 posts

Andrey S.

Andrey S.

@scriptology_eu

Frontend & Sailing

Spain เข้าร่วม Haziran 2011
167 กำลังติดตาม17 ผู้ติดตาม
Sk Akram
Sk Akram@akramcodez·
is there any database better than Supabase?
Sk Akram tweet media
English
45
0
56
5.2K
The Figen
The Figen@TheFigen_·
Russia’s colossal Kalyazin RT-64 radio telescope: 64-meter Soviet-era giant still operating deep in snowy forests.
English
176
963
9.4K
884.7K
Andrey S.
Andrey S.@scriptology_eu·
@weswinder I am also looking for an ultra compact laptop, but surprised that nothing like that is available on the market in 2026. The closest option is the GPD Pocket 4 Modular Laptop, but it is ridiculously expensive
Andrey S. tweet media
English
1
0
1
112
Wes Winder
Wes Winder@weswinder·
somebody needs to bring this back but for claude code and codex
Wes Winder tweet media
English
23
1
56
2.8K
Andrey S.
Andrey S.@scriptology_eu·
@nalinrajput23 I remember accidentally spilling Red Bull on the screen and replacing it in one evening with no repair experience
English
0
0
1
871
Nalin
Nalin@nalinrajput23·
What is the reason behind ThinkPad’s popularity among engineers?
Nalin tweet media
English
629
368
9.9K
1.8M
Andrey S.
Andrey S.@scriptology_eu·
@moxus Looks really cool. Could you share some details about this setup?
English
0
0
2
465
k_mori
k_mori@moxus·
2026-03-08
11
41
576
28.9K
🤦🏻‍♀️
🤦🏻‍♀️@8teen__wolff·
Hey @grok, transform this dirty kitchen into a big and luxurious kitchen.
🤦🏻‍♀️ tweet media
English
335
157
3.4K
4.2M
Andrey S.
Andrey S.@scriptology_eu·
2026 is the year of orchestration I have been experimenting with a tool called Trigger.dev lately. But what interests me is not the tool itself. It is what it represents. What is happening to the profession The question developers ask has shifted. Not dramatically, not all at once. But it has shifted. Before: "How do I write this code?" Now: "How do I make sure this process does not crash at 3am when an external API hangs for 40 seconds?" These are very different questions. The first is about syntax, the second is about the lifecycle of long-running tasks. And this is exactly where a whole class of tools called orchestrators comes in. The problem everyone pretended did not exist When an AI agent runs a complex chain of tasks, parsing data, calling multiple APIs, waiting on an LLM response, the whole thing can take minutes or even hours. Traditional serverless platforms are not built for this: timeouts hit, state is lost, the job fails silently. This is not a hypothetical problem. It is something anyone who has tried to ship an #AI agent to production has run into. There is another side to this that gets less attention: task isolation and containerization. Every run in Trigger.dev executes in its own MicroVM, an isolated environment that spins up in milliseconds and shares no state with other processes. So one failing agent does not bring down the rest, and every task gets a clean, predictable environment. The snapshot mechanism goes further. When a task pauses waiting for a human-in-the-loop approval or an external event, Trigger.dev physically terminates the container. CPU and RAM are fully released. This is different from the classic checkpoint approach, where state gets serialized and written to a database, but the server process stays alive and keeps holding resources. For agentic workflows where a task waits hours for a human response, the difference on your cloud bill is real. Here is a practical scenario that shows this well. Imagine you have 500 active tasks in the queue and need to deploy a new version of your service. With traditional long-running workers, this is painful: you either wait for everything to finish or kill processes and lose progress. Trigger.dev handles this cleanly: active tasks complete on the old version using their saved snapshot, new tasks spin up on the updated one. A deploy with no queue drain and no data loss. Why now Several things aligned at the same time. The #mcp standard (Model Context Protocol) made it possible for agents from different vendors to talk to each other without custom integration layers. That removed one of the biggest barriers to production deployments. At the same time, tools like Cursor made generating code almost trivial, which shifted the real challenge: writing code is easy now, but making it run reliably across external APIs, agents, and async processes is still hard. That is where orchestration moved from "nice to have" to a required layer of any serious architecture. Google Cloud's 2026 reports show that nearly 90% of companies that adopted agentic systems are already seeing positive ROI. The Comp AI case is a good example: automating evidence collection for SOC 2 certification let startups go through audits at a fraction of the traditional cost, and over 2,500 companies adopted the platform in a short period. The economics are shifting. Developers who can build reliable orchestration layers are becoming more valuable than those who just write clean code. The main options and where Trigger.dev fits Here is how the main options compare: temporal.io has years of proven use in enterprise environments, but the learning curve is steep. It requires strictly deterministic code and a deep understanding of the workflow model. inngest.com is built around a pure event-driven approach. Clean for serverless, no long-running workers needed. Trigger.dev is positioned as "@vercel for the backend." TypeScript-native, MicroVM under the hood, official MCP server for AI agent integration. Well suited for tasks where an agent needs to survive long pauses. There is no universally better choice. But there is a right choice for a given task, and knowing how to make that call is becoming a key skill. What this means for developers 2026 is when #agentic systems moved from demos into real production. And as that happened, orchestration quietly became the connective tissue of the stack: the layer that handles task delegation, retries, state, and API coordination across the whole system. Developers are moving away from writing code toward designing processes. This is not a threat to the profession. It is an upgrade. I am still experimenting with this stack. If you are already running orchestrators in production, I would be curious to hear what you chose and why. @triggerdotdev @inngest @temporalio
Andrey S. tweet media
English
0
0
1
46
Andrey S.
Andrey S.@scriptology_eu·
There’s been discussion about different formats for representing structured data in AI workflows: JSON, TOON and VSC. Same data example in three formats. JSON { “users”:[{“id”:1,“name”:“Alice”,“role”:“admin”},{“id”:2,“name”:“Bob”,“role”:“user”}] } TOON users[2]{id,name,role}: 1,Alice,admin 2,Bob,user VSC schema:id,name,role 1,Alice,admin 2,Bob,user JSON is the standard for web. TOON tries to reduce syntax noise and token usage for LLM prompts. VSC goes further and keeps only values when the schema is known. Will one format win, or will each one occupy their own niche in AI systems?
Andrey S. tweet media
English
0
0
0
50
Andrey S.
Andrey S.@scriptology_eu·
@eliheuer I recently got back into Rust. After 15 years of working with JS/TS, I feel like I need a systems-level language to bring my ideas to life. I was surprised by how many ready solutions now exist for AI and GUI.
English
0
0
1
43
Eli Heuer
Eli Heuer@eliheuer·
Rust with Claude Code is the most fun I have ever had programming. With the right skills, tests, and context docs it just works, still feels like a dream almost a year in.
Eric S. Raymond@esrtweet

A few days from now I'm going to ship my first program written in Rust. But I don't actually know Rust. Strange days have found us. The astute among you will already have guessed that I used an LLM to translate to Rust a program I originally wrote in C. And that would be correct! But there's a bit more to the story, and some heavy symbolic freight. For, you see, to me this isn't just any C program. It's the very first one I wrote, back in early 1983. It marks the point where I was able to stop farting around with OSes and tools that were doomed to rapid obsolescence and become a Unix developer It's hexd, my humble little hex dumper that has survived four decades and is packaged by several Linux distributions competing with od(1) because it emulates the more pleasing and ergonomic dump format now associated with CP/M. (The style actually goes back further to the PDP-11 and very old DEC operating systems.) That year, 1983 was approximately the beginning of the long dominance of C as a systems programming language. It have been in use at Bell Labs earlier than that, of course, but not until the early 1980s did it escape containment and begin to steamroll every other compiled language and use at the time. And in a few days I'm going to ship a Rust translation. Alongside the C, giving distribution makers a choice between memory safety with a large binary made from Rust versus a small but very well tested binary without those guarantees. So one could argue it's a half step. Still. The portents are clear. The old order passeth. C being replaced by languages with stronger memory safety guarantees. But in a twist nobody anticipated, this won't happen because developers are changing their manual coding habits. It will change because increasingly, automatically moving code between languages is nearly trivial. Not long ago I LLM-lifted another ancient C program I maintain, cvs-fast-export. That one went to Gol. I do know Golang and I like it. So, why move hexd to Rust? The answer is: automatic memory management. cvs-fast-export needed that capability rather badly; hexd does not. I think this is the big fork on the road when it comes to moving stuff out of C, because in 2026 what candidate l C successors other than Go and Rust would one realistically choose for serious production use? I was there at the beginning of the long era of C. I believe now that I will live to see its end, and the large language models will be the instruments of its demise. Somebody should write an elegy.

English
1
1
8
1.2K
Andrey S.
Andrey S.@scriptology_eu·
4/9 🧩 Self Hosted AI Agents A lot of teams want full control over their agent stack. These projects are designed to run on your own infrastructure with full ownership of data and execution. • OpenClaw openclaw.ai • ZeroClaw zeroclaw.dev • NanoClaw nanoclaw.net Common direction: local deployment, custom tooling, private data handling, and infrastructure-level control.
English
0
0
0
60
Andrey S.
Andrey S.@scriptology_eu·
3/9 🧱 Enterprise AI Agents Another direction is enterprise-ready agent platforms built for teams and production environments. These solutions focus on governance, reliability, and control at scale. • IronClaw ironclaw.tech • OpenClaw openclaw.ai • ControlClaw controlclaw.io Common direction: policy management, audit trails, access control, and structured workflows for real production use.
English
0
0
0
64
Andrey S.
Andrey S.@scriptology_eu·
2/9 ⚡ Lightweight AI Agents Another clear trend is smaller and simpler agents. These projects focus on minimal runtime, fast startup, and low resource usage. • PicoClaw picoclaw.dev • NullClaw nullclaw.ai • ZeptoClaw zeptoclaw.io Common direction: smaller binaries, fewer moving parts, easier control, reduced attack surface.
English
1
1
1
128
Andrey S.
Andrey S.@scriptology_eu·
1/9 Security First AI Agents A growing group of AI agents is built around one idea: security first. Instead of adding more automation, these projects focus on safe execution and strict control. • ZeroClaw zeroclaw.dev • NanoClaw nanoclaw.net • IronClaw ironclaw.tech Common direction: sandboxing, isolation, policy control, and limiting what the agent can access.
English
0
0
0
54
Cursor
Cursor@cursor_ai·
Sonnet 4.6 is now available in Cursor. Our benchmarks show it as a notable improvement over Sonnet 4.5 on longer tasks, but below Opus 4.6 for intelligence.
English
67
86
2.2K
114K