Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase

    The great AI agent acceleration: Why enterprise adoption is happening faster than anyone predicted

    $8.8 trillion protected: How one CISO went from ‘that’s BS’ to bulletproof in 90 days

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      Apple sued by shareholders for allegedly overstating AI progress

      June 22, 2025

      How far will AI go to defend its own survival?

      June 2, 2025

      The internet thinks this video from Gaza is AI. Here’s how we proved it isn’t.

      May 30, 2025

      Nvidia CEO hails Trump’s plan to rescind some export curbs on AI chips to China

      May 22, 2025

      AI poses a bigger threat to women’s work, than men’s, report says

      May 21, 2025
    • Business

      Cloudflare open-sources Orange Meets with End-to-End encryption

      June 29, 2025

      Google links massive cloud outage to API management issue

      June 13, 2025

      The EU challenges Google and Cloudflare with its very own DNS resolver that can filter dangerous traffic

      June 11, 2025

      These two Ivanti bugs are allowing hackers to target cloud instances

      May 21, 2025

      How cloud and AI transform and improve customer experiences

      May 10, 2025
    • Crypto

      MoonPay Executives Might Have Fallen for $250,000 Trump-Themed Crypto Scam

      July 11, 2025

      Top 3 Altcoins Trending in Nigeria This Week

      July 11, 2025

      Tether is Removing USDT From These 5 Legacy Blockchains

      July 11, 2025

      HBAR Faces Final Hurdle After Explosive Rally; Are Bulls Tiring Out?

      July 11, 2025

      OKX Europe CEO Discusses Bitcoin’s Breakout Rally | US Crypto News

      July 11, 2025
    • Technology

      Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase

      July 11, 2025

      The great AI agent acceleration: Why enterprise adoption is happening faster than anyone predicted

      July 11, 2025

      $8.8 trillion protected: How one CISO went from ‘that’s BS’ to bulletproof in 90 days

      July 11, 2025

      AWS doubles down on infrastructure as strategy in the AI race with SageMaker upgrades

      July 11, 2025

      The best Amazon Prime Day deals for the last day: Our top picks on headphones, TVs, robot vacuums and more

      July 11, 2025
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Shop Now
    Tech AI Verse
    You are at:Home»Technology»Operators, Not Users and Programmers
    Technology

    Operators, Not Users and Programmers

    TechAiVerseBy TechAiVerseJuly 6, 2025No Comments6 Mins Read0 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Operators, Not Users and Programmers
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Operators, Not Users and Programmers

    the modern distinction between “programmers” and “users” is evil and destroys agency.

    consider how the spreadsheets grow🔗

    spreadsheets are hugely successful. Felienne Hermans, who has spent her career studying spreadsheets, attributes this success to “their immediate feedback system and their continuous deployment model“: the spreadsheet shows you its result as soon as you open it, and it requires no steps to run other than to install Excel and double-click the file.

    Rik calls Excel “malleable software” and the resulting programs “vine-like systems”:

    The dream of malleable software is that we can enlarge the space of possibilities, users can enjoy more freedom and get more out of their software, without having to rely on software developers to provide it for them.

    i would go one step further: the dream of malleable software is to unify users and programmers, such that there are just “operators” of a computer, and “writing a program” doesn’t sound any harder than “writing a resume”:

    the distinction between “user” and “programmer” is an artifact of our presently barely-programmable and barely-usable computing systems.  I would like to use the neutral word “operator” instead.
    —Stanislav

    this is a relatively new distinction! if we look at the history of computing and of programming languages, we see very different patterns:

    In the 1960’s the supply of programmers was not very deep so IBM and other companies trying to gain a computer sale would often have to sell the business prospect on the idea of creating its own programmer(s). Sometimes it was the shipping clerk; sometimes it was the head order taker; sometimes it was a bookkeeper, and sometimes it was a woman or man packing items in the warehouse.
    —Brian M. Kelly, The AS/400 and IBM i RPG Programming Guide

    this is what i want: for programming to be easy and simple enough to pick up that people can do it without specialized training in the field, so that they can write situated software.

    the “user/programmer” distinction🔗

    contrast malleable software to the systems that programmers often build:

    Many, many technologists have taken one look at an existing workflow of spreadsheets, reacted with performative disgust, and proposed the trifecta of microservices, Kubernetes and something called a “service mesh”.

    This kind of Big Enterprise technology however takes away that basic agency of those Excel users, who no longer understand the business process they run and now have to negotiate with ludicrous technology dweebs for each software change. The previous pliability of the spreadsheets has been completely lost.
    —Cal Peterson

    now, this doesn’t happen because programmers are stupid and evil. it happens because the systems we build are amenable to all the features that programmers take for granted:

    • distributed version control systems (VCS)
    • automated testing (when integrated with a VCS, often called “continuous integration”)
    • gradual controlled rollouts (when integrated with a VCS, often called “continuous deployment”)

    what i want to imagine is what it would look like to build computing systems that have those features and are also malleable.

    what could a malleable system with low technical risk look like?🔗

    let’s start by looking at what malleable systems already exist.

    malleable languages🔗

    • spreadsheets, as previously discussed
    • WYSIWYG editors: Microsoft Word, Obsidian, Typst, WordPress. In Word, and in Obsidian’s default view, the compile step is completely hidden and it appears to the user as if the source and rendered view are the same. in other editors, the rendered view updates quickly and frequently enough that they get immediate feedback, just like a spreadsheet.
    • browser devtools, where editing an element in the inspector immediately updates the rendered view
    • sonic-pi, where editing code live-updates the sound played
    • my blog

    note these aren’t just hot-patching, where you edit a system while it’s running. hot-patching is certainly useful and i would like to see more of it, but it doesn’t unify the source and rendered version of a program, you still have to trip the condition in order to observe the change. malleable languages are a combination of:

    • hot-patching
    • live previews that makes updates appear instant
    • undo/redo for the whole system

    malleable version control🔗

    • file shares: google drive; sharepoint; onedrive; etc. the tooling for diffing and reverting is very primitive compared to git or hg (in particular diffing is the responsibility of the application, not the VCS), but the primitives are there.
    • Bank Python, where the distinction between local and persisted storage is smoothed over by the runtime

    note a pattern here: these don’t require prior approval in order to use. anyone can throw a file into google drive and hit share without prior approval (sometimes this is frowned upon, in which case it gets called “Shadow IT”).

    malleable deployment🔗

    • Bank Python’s vouch system, where hitting “approve” insta-deploys to prod. at a technical level this is basically the same as code review, but unlike normal CI systems it’s not configured to require tests to pass, because anything that’s too annoying will end up with people bypassing the system to build shadow IT.

    unfortunately i am not aware of a malleable testing system—if you know of one, please do tell me!

    putting it together🔗

    so, we want the following from a malleable system:

    • hot-reloading and live previews, like spreadsheets
      • in particular, we want the user to write in the representation that makes the most sense to them, whether that’s a spreadsheet or an SQL query or a text editor of markup
    • automatic and continuous durability, like autosave in microsoft office products.
      • in particular this undo/redo capability works on the whole system including derived data, not just the source code itself, so you can try new things without fear of breaking everything. the closest programmers have to this today is jj, which automatically snapshots the working tree, but taking snapshots still requires a manual action, and you need to set up the system in advance.
    • distributed version control++
      • with unrestricted distribution and an easy interface, like google drive and dropbox
      • with diffing/merging/reverting, like traditional VCS
    • automated and instantly triggered testing, like piper at google. this could run your tests in the background as you edit your program, with integrated build caching so that only the affected tests rerun.
    • continuous deployment
      • we want explicit approval and controlled rollout, like traditional CD, so we can separate “upload the code” from “run the code in prod”
      • but we want it to be trivially easy to give that approval, like double-clicking an email attachment or the vouch system. don’t confuse “controlled rollout” with access control—it’s useful even if you’re a solo programmer.
    • and of course, performance.

    this is a tall order! the rest of this series is dedicated to ideas about how to make this possible.

    P.S: what will people build with this power?🔗

    i consulted a local friend of mine, a polisci major, and asked him what he would build if he were able to program. he said a penguin that walks across the screen, followed by a puffin friend for him. so, here’s to penguins 🐧

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous Article7-Zip 25.00
    Next Article RFK’s proposal to let bird flu spread through poultry
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase

    July 11, 2025

    The great AI agent acceleration: Why enterprise adoption is happening faster than anyone predicted

    July 11, 2025

    $8.8 trillion protected: How one CISO went from ‘that’s BS’ to bulletproof in 90 days

    July 11, 2025
    Leave A Reply Cancel Reply

    Top Posts

    New Akira ransomware decryptor cracks encryptions keys using GPUs

    March 16, 202528 Views

    OpenAI details ChatGPT-o3, o4-mini, o4-mini-high usage limits

    April 19, 202522 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 202519 Views

    Rsync replaced with openrsync on macOS Sequoia

    April 7, 202519 Views
    Don't Miss
    Technology July 11, 2025

    Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase

    Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase July 11,…

    The great AI agent acceleration: Why enterprise adoption is happening faster than anyone predicted

    $8.8 trillion protected: How one CISO went from ‘that’s BS’ to bulletproof in 90 days

    AWS doubles down on infrastructure as strategy in the AI race with SageMaker upgrades

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Solo.io wins ‘most likely to succeed’ award at VB Transform 2025 innovation showcase

    July 11, 20251 Views

    The great AI agent acceleration: Why enterprise adoption is happening faster than anyone predicted

    July 11, 20252 Views

    $8.8 trillion protected: How one CISO went from ‘that’s BS’ to bulletproof in 90 days

    July 11, 20252 Views
    Most Popular

    Ethereum must hold $2,000 support or risk dropping to $1,850 – Here’s why

    March 12, 20250 Views

    Xiaomi 15 Ultra Officially Launched in China, Malaysia launch to follow after global event

    March 12, 20250 Views

    Apple thinks people won’t use MagSafe on iPhone 16e

    March 12, 20250 Views
    © 2025 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.