Retired since 2012.
2454 stories
·
4 followers

Fix your inbox: Design engineer your own newsletter digest email

1 Comment

Are you willing to admit your inbox has become unmanageable? Here’s how I turned mine into a single daily digest of newsletters. And you can too. Here’s what it looks like:

(Yes, I could turn this into a startup, meco.app is already doing that, but let’s build our own!)


Overview

What you’ll need

How it works

  1. Newsletter arrives in new Gmail → filter applies category label

  2. Input script runs every 30 min → saves posts to Firebase with category

  3. Output script runs daily → reads Firebase → calls Claude to write summary → sends digest email

Sound good?


Simple Tutorial

Start a new Claude session and tell it:

I want to set up a personal newsletter digest called 4D Daily Digest. I have two Google Apps Script files (input.gs and output.gs) that I’ll paste in when you ask for them.

The system works like this: input.gs runs every 30 minutes as a Google Apps Script in a dedicated Gmail account, watches the inbox for newsletters, and saves them to a Firebase Realtime Database. output.gs runs once a day, reads those posts from Firebase, (optionally) calls the Claude API to write a short summary of what’s trending across all my newsletters, and emails me a digest.

Please help me: 1. Set up a Firebase project and get the database URL 2. Create a Google Apps Script project called Digest with two files, paste in the scripts, and fill in my Firebase URL and Gmail address 3. Set up Gmail labels for my newsletter categories and filters to apply them automatically 4. Authorize and test the scripts 5. Set up triggers to run them automatically

Here are the two scripts to paste when it asks for them:

  1. input.gs

  2. output.gs

Think in 4D is a reader-supported publication. To receive new posts and support my work, consider becoming a free or paid subscriber.


Step-by-Step Tutorial

Want more details?

Step 1: Create a dedicated Gmail account

Create a new Gmail account just for newsletters — this keeps your personal inbox clean and gives the scripts a dedicated inbox to watch.

Emails appear in the “uncategorized” section of the digest until you get around to creating the categorization filters (see step 3).


Step 2: Set up Gmail categories

In your newsletter Gmail account, create labels for each category you want. I like to do them by purpose, for example:

  • Get Techy

  • Build a Biz

  • Get Cultured

  • Have Fun

Then, for each newsletter you subscribe to, create a filter that applies the right label:

  1. In Gmail’s search, type from:domain.com (e.g. from:platformer.com) and hit enter

  2. Click the filters/options button at the right edge of the search bar

  3. Click Create filter

  4. Check Apply the label and choose the category label

  5. Check Skip the Inbox (Archive it) if you want to keep this inbox clear

  6. Click Create filter

Bonus: You can quit here, and still have a nice RSS-style browseable inbox:

Want to keep going and get that digest?


Step 3: Set up the database

Firebase is a free database to store and serve the emails.

  1. Go to console.firebase.google.com

  2. Create a new project, name it Digest or whatever (on the following screens, you can enable AI and analytics if you want, but it’s not required)

  3. In the left nav, go to DatabasesRealtime Database

  4. Click Create Database, and then any location, and then start in test mode

  5. Your database will open. Click over to the Rules tab, and paste the following so the scripts can access the database (NOTE: this is open access, but for personal use that’s fine):

{
  "rules": {
    ".read": true,
    ".write": true
  }
}
  1. Go back to the Data tab. Notice your database URL at the top (it looks like https://your-project-default-rtdb.firebaseio.com), you’ll need that in a minute


Step 4: Set up the Digest scripts

Now we just need to paste things into Google Apps Script, a simple place to write and run JavaScript from the cloud.

  1. Log into script.google.com as your newsletter Gmail account

  2. Create a new project, call it Digest

Set up the input script

  1. You’ll see a default file called Code.gs — rename it to input.gs

  2. Paste in the contents of input.gs

  3. Update FIREBASE_URL → paste your Firebase database URL

Set up the output script

  1. Add a second file: click + next to Files → Script → name it output.gs

  2. Paste in the contents of output.gs and update these values at the top:

    • FEEDER_BASE_URL → your Firebase database URL

    • BRIEFING_FROM → your newsletter Gmail address

    • BRIEFING_TO → your personal email address

  3. Run the script for the first time to authorize it:

    • In input.gs, select processNewEmails from the function dropdown at the top of the editor

    • Click the Run button (▶)

    • A popup will ask you to review permissions — click Review permissions, choose your newsletter Gmail account, then click Allow

    • Check View → Logs to confirm it ran without errors

Schedule the digest

Now just set up two triggers to run the scripts automatically:

  1. Click the clock icon (Triggers) in the left sidebar

  2. Click + Add Trigger (bottom right) for the input trigger

    1. function: processNewEmails

    2. Time-driven

    3. Hour timer

    4. Every 30 minutes

    5. Save!

  3. Click + Add Trigger for the second trigger:

    1. function: sendDailyBriefings

    2. Time-driven

    3. Day timer

    4. your preferred time

    5. Save!

  4. You may be asked to authorize again — click Allow


Step 5 (Optional): Add the summaries

You’ll need an Anthropic API key and some cash in the account. If you skip this, the summaries just won’t appear, the rest of the digest works fine.

  1. Go to console.anthropic.com and create an account

  2. Add a credit card and purchase some credits (~$5 should last months)

  3. Go to API Keys and create a new key

  4. Paste it into ANTHROPIC_KEY at the top of output.gs


Step 6: Test it

  1. In output.gs, make sure TEST_MODE = true

  2. Run sendDailyBriefings manually

    1. Make sure the function dropdown says sendDailyBriefings

    2. Click the Run button

    3. Check your inbox: everything looks good? If not, ask Claude how to revise the scripts to appear how you’d like


Step 7: Ship it!

  1. Set TEST_MODE = false and save the script

  2. You’ll get the digest tomorrow at your preferred time


Tips

  • Where do the links go?

    • To the original article or post on the web. For newsletters that don’t publish a web version, the link goes to the Gmail thread — you’ll need to be logged into your newsletter Gmail account to open those.

  • Want to change a newsletter’s category?

    • Go to Settings → See all settings → Filters and Blocked Addresses, find the filter for that sender, click Edit, and change the label it applies.

    • You can also add or rename categories at any time under Settings → See all settings → Labels.

  • Want to remove a source?

    • Just unsubscribe from the newsletter, if it’s not coming to your inbox it won’t be in the digest

  • Want to pause a source but not unsubscribe?

    • Set active: false on the feed entry in Firebase

  • Not seeing a source?

    • Gmail will occasionally flag the digest as spam. Mark it as not spam once and it should stop

Other questions? Let me know!

Thanks for reading Think in 4D! This post is public so feel free to share it.

Share

Read the whole story
cjheinz
9 hours ago
reply
Nice!
Lexington, KY; Naples, FL
Share this story
Delete

Here's the Manual for ICE's Electric Shock Gloves

1 Comment

Immigration and Customs Enforcement (ICE) plans to spend tens of millions of dollars on buying specialized gloves that pulse with electrical energy, which make it easier for agents to subdue people, the Associated Press reported on Tuesday.

A user manual for G.L.O.V.E, or Generated Low Output Voltage Emitter, sold by a company called Compliant Technologies, provides more specifics on how the gloves are supposed to work and allegedly be used.

“No more than two (one pair or equivalent) of G.L.O.V.E. devices should be applied at one time to a single Subject,” the manual reads. 404 Media found multiple copies of the manual online and archived a version here

The manual says the gloves may even contribute to “sudden death.” It says “Conductive Distraction and De-escalation Devices” or CD3s may “increase the affects [sic] that can cause sudden death including physiological changes.” It then lists increases in blood pressure, respiration, and heart rates; changes in heart rhythm; and increases in adrenaline.

The manual says the gloves must “come in contact with the subject’s skin” and are not effective through clothing or hair. It also says the gloves “can be degraded on individuals and animals that are extremely hairy.”

Another page includes a diagram of the human body and says officers can “grab anywhere on the body” with the gloves “while avoiding the head, face, throat, chest and groin areas.” If the subject resists, though, another page says to deploy the gloves “as necessary.”

It recommends using the gloves for around 15 seconds, but a demonstration video published by Peacekeeper Products, which also sells the device, shows staff using it for only a second or two with people already yelling in pain.

The manual says users should avoid using the G.L.O.V.E device against elderly people, small children, pregnant women, and “the severely handicapped.”

The Associated Press report was based on a Department of Homeland Security (DHS) procurement record that said the gloves would be issued specifically to Homeland Security Investigations (HSI) and Enforcement and Removal Operations (ERO), the part of ICE focused on deportations. Civil rights advocates expressed alarm at the planned purchase of the technology by an agency that is already widely seen as out of control and using physical force disproportionately.

The CEO of Compliant Technologies Jeff Nikaus published a long Instagram Reel after the assassination of Charlie Kirk. “I believe as a nation we are on a precipice,” he said. He said, “we need supernatural activity” and “we need to repent as a nation,” among other explicit Christian Nationalist ideas.

Compliant Technologies did not immediately respond to a request for comment.

Read the whole story
cjheinz
1 day ago
reply
Shocking ...
Lexington, KY; Naples, FL
Share this story
Delete

The Monetary Roots of Political Extremism

1 Comment

While the global economy generates unprecedented wealth for plutocrats like Elon Musk, it is, by design, highly unequal, dangerously over-indebted, prone to recurring financial crises, and ecologically disastrous. In such a context, radical reforms will be needed, beginning with the rejection of money as a commodity.



Read the whole story
cjheinz
1 day ago
reply
Hmmm ...
Lexington, KY; Naples, FL
Share this story
Delete

“Taxi and ambulance drivers are less likely than...

1 Comment

“Taxi and ambulance drivers are less likely than workers in almost any other job to die of Alzheimer’s disease.” The key difference: “the constant work of locating yourself in space, tracking a destination and updating a mental map as conditions change.”

Read the whole story
cjheinz
3 days ago
reply
Interesting ... 4d thinking, FTW?
Lexington, KY; Naples, FL
Share this story
Delete

The Web and the New Reality

1 Share
A crude visual representation of what Jefferson called “the combustive power” of an idea, explained below.

Until Linux Journal hired me in 1996, no publication—tech or otherwise—would employ me. Not full-time, anyway. I was too obsessed with the Internet, the Web, and what I saw as the dawn of a new reality: a digital world we would co-occupy with the natural one. So I self-published on the Web, at Searls.com, where that writing still sits, waiting for me to make all of it https rather than http. This is one of those pieces, published on December 1, 1995, six days before Bill Gates’ “Pearl Harbor” speech to his Microsoft troops. I’ve made minimal edits to add links and correct punctuation.

Contents


Reality 2.0

The import of the Internet is so obvious and extreme that it actually defies valuation: witness the stock market, which values Netscape so far above that company’s real assets and earnings that its P/E ratio verges on the infinite.

Whatever we’re driving toward, it is very different from anchoring certainties that have grounded us for generations, if not for the duration of our species. It seems we are on the cusp of a new and radically different reality. Let’s call it Reality 2.0.

The label has a millenial quality, and a technical one as well. If Reality 2.0 is Reality 2.000, this month we’re in Reality 1.995.12.

With only a few revisions left before Reality 2.0 arrives, we’re in a good position to start seeing what awaits. Here are just a few of the things this writer is starting to see…

  1. As more customers come into direct contact with suppliers, markets for suppliers will change from target populations to conversations.
  2. Travel, ticket, advertising and PR agencies will all find new ways to add value, or they will be subtracted from market relationships that no longer require them.
  3. Within companies, marketing communications will change from peripheral activities to core competencies.New media will flourish on the Web, and old media will learn to live with the Web and take advantage of it.
  4. Retail space will complement cyber space. Customer and technical service will change dramatically, as 800 numbers yield to URLs and hard copy documents yield to soft copy versions of the same thing… but in browsable, searchable forms.
  5. Shipping services of all kinds will bloom. So will fulfillment services. So will ticket and entertainment sales services.
  6. The web’s search engines will become the new yellow pages for the whole world. Your fingers will still do the walking, but they won’t get stained with ink. Same goes for the white pages. Also the blue ones.
  7. The scope of the first person plural will enlarge to include the whole world. “We” may mean everybody on the globe, or any coherent group that inhabits it, regardless of location. Each of us will swing from group to group like monkeys through trees.
  8. National borders will change from barricades and toll booths into speed bumps and welcome mats.
  9. The game will be over for what teacher John Taylor Gatto labels “the narcotic we call television.” Also for the industrial relic of compulsory education. Both will be as dead as the mainframe business. In other words: still trucking, but not as the anchoring norms they used to be.
  10. Big Business will become as anachronistic as Big Government, because institutional mass will lose leverage without losing inertia.Domination will fail where partnering succeeds, simply because partners with positive sums will combine to outproduce winners and losers with zero sums.
  11. Right will make might.
  12. And might will be mighty different.

Polyopoly

The Web is the board for a new game Phil Salin called “Polyopoly.” As Phil described it, Polyopoly is the opposite of Monopoly. The idea is not to win a fight over scarce real estate, but to create a farmer’s market for the boundless fruits of the human mind.

It’s too bad Phil didn’t live to see the web become what he (before anyone, I believe) hoped to create with AMIX: “the first efficient marketplace for information.” The result of such a marketplace, Phil said, would be polyopoly.

In Monopoly, what mattered were the three Ls of real estate: “location, location and location.”

On the web, location means almost squat.

What matters on the web are the three Cs: contentconnections and convenience. These are what make your home page a door the world beats a path to when it looks for the better mouse trap that only you sell. They give your webfront estate its real value.

If commercial interests have their way with the Web, we can also add a fourth C: cost. But how high can costs go in a polyopolistic economy? Not very. Because polyopoly creates…

An economy of abundance

The goods of Polyopoly and Monopoly are as different as love and lug nuts. Information is made by minds, not factories; and it tends to make itself abundant, not scarce. Moreover, scarce information tends to be worthless information.

Information may be bankable, but traditional banking, which secures and contains scarce commodities (or their numerical representations) does not respect the nature of information.

Because information abhors scarcity. It loves to reproduce, to travel, to multiply. Its natural habitats are wires and airwaves and disks and CDs and forums and books and magazines and web pages and hot links and chats over cappuccinos at Starbucks. This nature lends itself to polyopoly.

Polyopoly’s rules are hard to figure because the economy we are building with it is still new, and our vocabulary for describing it is sparse.

This is why we march into the Information Age hobbled by industrial metaphors. The “information highway” is one example. Here we use the language of freight forwarding to describe the movement of music, love, gossip, jokes, ideas, and other communicable forms of knowledge that grow and change as they move from mind to mind.

We can at least say that knowledge, even in its communicable forms, is not reducible to data. Nor is the stuff we call “intellectual property.” A song and a bank account do not propagate the same ways. But we are inclined to say they do (and should), because we describe both with the same industrial terms.

All of which is why there is no more important work in this new economy than coining the new terms we use to describe it.

The Age of Enlightenment finally arrives

The best place to start looking for help is at the dawn of the Industrial Age. Because this was when the Age of Reason began. Nobody knew more about the polyopoly game — or played it — better than those champions of reason from whose thinking our modern republics are derived: Thomas Paine, Thomas Jefferson and Benjamin Franklin.

As Jon Katz says in “The Age of Paine” (Wired, May 1995 ), Thomas Paine was the the “moral father of the Internet.” Paine said “my country is the world,” and sought as little compensation as possible for his work, because he wanted it to be inexpensive and widely read. Paine’s thinking still shapes the politics of the U.S., England and France, all of which he called home.

Thomas Jefferson wrote the first rule of Polyopoly in his letter to Isaac MacPherson: “He who receives an idea from me receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.”

He also left a live bomb for modern intellectual property law: “Inventions then cannot, in nature, be a subject of property.” The best look at the burning fuse is John Perry Barlow’s excellent essay “The Economy of Ideas,” in the March 1994 issue of Wired. (I see that Jon Katz repeats it in his paean to Paine. Hey, if someone puts it to song, who gets the rights?)

If Paine was the moral father of the Internet, Ben Franklin’s paternity is apparent in Silicon Valley. Today he’d fit right in, inventing hot products, surfing the Web and spreading his wit and wisdom like a Johnny Cyberseed. Hell, he even has the right haircut.

Franklin left school at 10 and was barely 15 when he ran his brother’s newspaper, writing most of its content and getting quoted all over Boston. He was a self-taught scientist and inventor while still working as a writer and publisher. He also found time to discover electricity, create the world’s first postal service, invent a heap of handy products and serve as a politician and diplomat.

Franklin’s biggest obsession was time. He scheduled and planned constantly. He even wrote his famous epitaph when he was 22, six decades before he died. “The work shall not be lost,” it reads, “for it will (as he believed) appear once more in a new and more elegant edition, revised and edited by the author.”

One feels the ghost of Franklin today, editing the web.

Time to subtract the garbage

Combine Jefferson and Franklin, and you get the two magnetic poles that tug at every polyopoly player: information that only gets more abundant, and time that only gets more scarce.

As Alain Couder of Groupe Bull puts it, “we treat time as a constant in all these formulas — revolutions per minute, instructions per second — yet we experience time as something that constantly decreases.”

After all, we’re born with an unknown sum of time, and we need to spend it all before we die. The notion of “saving” it is absurd. Time can only be spent.

So: to play Polyopoly well, we need to waste as little time as possible. This is not easy in a world where the sum of information verges on the infinite.

Which is why I think Esther Dyson might be our best polyopoly player.

“There’s too much noise out there anyway,” she says in ‘Esther Dyson on DaveNet‘ (12/1/94). “The new wave is not value added, it’s garbage-subtracted.”

Here’s a measure of how much garbage she subtracts from her own life: her apartment doesn’t even have a phone.

Can she play this game, or what?

So what’s left?

I wouldn’t bother to ask Esther if she watches television, or listens to the radio. I wouldn’t ask my wife, either. To her, television is exactly what Fred Allen called it forty years ago: “chewing gum for the eyes.” Ours heats up only for natural disasters and San Jose Sharks games.

Dean Landsman, a sharp media observer from the broadcast industry, tells me that John Gresham books are cutting into time that readers would otherwise spend watching television. And that’s just the beginning of a tide that will swell as every medium’s clients weigh more carefully what they do with their time.

Which is why it won’t be long before those clients wad up their television time and stick it under their computer. “Media will eat media,” Dean says.

The computer is looking a lot hungrier than the rest of the devices out there. Next to connected computing, television is AM radio.

Fasten your seat belts.

Web of the free, home of the Huns

Think of the Industrial world — the world of Big Business and Big Government — as a modern Roman Empire.

Now think of Bill Gates as Attilla the Hun.

Because that’s exactly how Bill looks to the Romans who still see the web, and everything else in the world, as a monopoly board. No wonder Bill doesn’t have a senator in his pocket (as Mark Stahlman told us in ‘Off to the Slaughter House,’ (DaveNet, 3/14/94).

Sadly for the the Romans, their empire is inhabited almost entirely by Huns, all working away on their PCs. Most of those Huns don’t have a problem with Bill. After all, Bill does a fine job of empowering his people, and they keep electing him with their checkbooks, credit cards and purchase orders.

Which is why, when they go forth to tame the web, these tough-talking Captains of Industry and Leaders of Government look like animated mannequins in Armani Suits: clothes with no emperor. Their content is emulation. They drone about serving customers and building architectures and setting standards and being open and competing on level playing fields. But their game is still control, no matter what else they call it.

Bill may be our emperor, but ruling Huns is not the same as ruling Romans. You have to be naked as a fetus and nearly as innocent. Because polyopoly does not reward the dark tricks that used to work for industry, government and organized crime. Those tricks worked in a world where darkness had leverage, where you could fool some of the people some of the time, and that was enough.

But polyopoly is a positive-sum game. Its goods are not produced by huge industries that control the world, but by smart industries that enable the world’s inhabitants. Like the PC business that thrives on it, information grows up from individuals, not down from institutions. Its economy thrives on abundance rather than scarcity. Success goes to enablers, not controllers. And you don’t enable people by fooling them. Or by manipulating them. Or by muscling them.

In fact, you don’t even play to win. As Craig Burton of The Burton Group puts it, “the goal isn’t win/win, it’s play/play.”

This is why Bill does not “control” his Huns the way IBM controlled its Romans. Microsoft plays by winning support, where IBM won by dominating the play. Just because Microsoft now holds a controlling position does not mean that a controlling mentality got them there. What I’ve seen from IBM and Apple looks far more Monopoly-minded and controlling than anything I’ve seen from Microsoft.

Does this mean that Bill’s manners aren’t a bit Roman at times? No. Just that the support Microsoft enjoys is a lot more voluntary on the part of its customers, users and partners. It also means that Microsoft has succeeded by playing Polyopoly extremely well. When it tries to play Monopoly instead, the Huns don’t like it. Bill doesn’t need the Feds to tell him when that happens. The Huns tell him soon enough.

market is a conversation

No matter how Roman Bill’s fantasies might become, he knows his position is hardly more substantial than a conversation. In fact, it IS a conversation.

I would bet that Microsoft is engaged in more conversations, more of the time, with more customers and partners, than any other company in the world. Like or hate their work, the company connects. I submit that this, as much as anything else, accounts for its success.

In the Industrial Age, a market was a target population. Goods rolled down a “value chain” that worked like a conveyor belt. Raw materials rolled into one end and finished products rolled out the other. Customers bought the product or didn’t, and customer feedback was limited mostly to the money it spent.

To encourage customer spending, “messages” were “targeted” at populations, through advertising, PR and other activities. The main purpose of these one-way communications was to stimulate sales. That model is obsolete. What works best to day is what Normann & Ramirez (Harvard Business Review, June/July 1993) call a “value constellation” of relationships that include customers, partners, suppliers, resellers, consultants, contractors and all kinds of people.

The Web is the star field within which constellations of companies, products and markets gather themselves. And what binds them together, in each case, are conversations.

How it all adds up

What we’re creating here is a new economy — an information economy.

Behind the marble columns of big business and big government, this new economy stands in the lobby like a big black slab. The primates who work behind those columns don’t know what this thing is, but they do know it’s important and good to own. The problem is, they can’t own it. Nobody can. Because it defies the core value in all economies based on physical goods: scarcity.

Scarcity ruled the stone hearts and metal souls of every zero-sum value system that ever worked — usually by producing equal quantities of gold and gore. And for dozens of millennia, we suffered with it. If Tribe A crushed Tribe B, it was too bad for Tribe B. Victors got the spoils.

This win/lose model has been in decline for some time. Victors who used to get spoils now just get responsibilities. Cooperation and partnership are now more productive than competition and domination. Why bomb your enemy when you can get him on the phone and do business with him? Why take sides when the members of “us” and “them” constantly change?

The hard evidence is starting to come in. A recent Wharton Impact report said, “Firms which specified their objectives as ‘beating our competitors’ or ‘gaining market share’ earned substantially lower profits over the period.” We’re reading stories about women-owned businesses doing better, on the whole, because women are better at communicating and less inclined to waste energy by playing sports and war games in their marketplaces.

From the customer’s perspective, what we call “competition” is really a form of cooperation that produces abundant choices. Markets are created by addition and multiplication, not just by subtraction and division.

In my old Mac IIci, I can see chips and components from at least 11 different companies and 8 different countries. Is this evidence of war among Apple’s suppliers? Do component vendors succeed by killing each other and limiting choices for their customers? Did Apple’s engineers say, “Gee, let’s help Hitachi kill Philips on this one?” Were they cheering for one “side” or another? The answer should be obvious.

But it isn’t, for two reasons. One is that the “Dominator Model,” as anthropologist (and holocaust survivor) Riane Eisler calls it, has been around for 20,000 years, and until recently has reliably produced spoils for victors. The other is that conflict always makes great copy. To see how seductive conflict-based thinking is, try to find a hot business story that isn’t filled with sports and war metaphors. It isn’t easy.

Bound by the language of conflict, most of us still believe that free enterprise runs on competition between “sides” driven by urges to dominate, and that the interests of those “sides” are naturally opposed.

To get to the truth here, just ask this: which has produced more — the U.S. vs. Japan, or the U.S. + Japan? One produced World War II and a lot of bad news. The other produced countless marvels — from cars to consumer electronics — on which the whole world depends.

Now ask this: which has produced more — Apple vs. Microsoft or Apple + Microsoft? One profited nobody but the lawyers, and the other gave us personal computing as we know it today.

The Plus Paradigm

What brings us to Reality 2.0 is the Plus Paradigm.

The Plus Paradigm says that our world is a positive construction, and that the best games produce positive sums for everybody. It recognizes the power of information and the value of abundance. (Think about it: the best information may have the highest power to abound, and its value may vary as the inverse of its scarcity.)

Over the last several years, mostly through discussions with client companies that are struggling with changes that invalidate long-held assumptions, I have built table of old (Reality 1.0) vs. new (Reality 2.0) paradigms. The difference between these two realities, one client remarked, is that the paradigm on the right is starting to work better than the paradigm on the left.

ParadigmReality 1.0Reality 2.0
Means to endsDominationPartnership
Cause of progressCompetitionCollaboration
Center of interestPersonalSocial
Concept of systemsClosedOpen
DynamicWin/LosePlay/Play
RolesVictor/VictimPartner/Ally
Primary goodsCapitalInformation
Source of leverageMonopolyPolyopoly
OrganizationHierarchyFlexiarchy
RolesVictor/VictimServer/Client
Scope of self-interestSelf/NationSelf/World
Source of powerMightRight
Source of valueScarcityAbundance
Stage of growthChild (selfish)Adult (social)
Reference valuablesMetal, MoneyLife, Time
Purpose of boundariesProtectionLimitation

Changes across the paradigms show up as positive “reality shifts.” The shift is from OR logic to AND logic, from Vs. to +:

Reality 1.0Reality 2.0
man vs natureman + nature
Labor vs managementLabor + management
Public vs privatePublic + private
Men vs womenMen + women
Us vs themUs + them
Majority vs minorityMajority + minority
Party vs partyParty + party
Urban vs ruralUrban + rural
Black vs whiteBlack + white
Business vs govt.Business + govt.

The Plus Paradigm comprehends the world as a positive construction, and sees that the best games produce positive sums for everybody. It recognizes the power of information and the value of abundance. (Think about it: the best information may have the highest power to abound, and its value may vary as the inverse of its scarcity.)

For more about this whole way of thinking, see Bernie DeKoven’s ideas about “the ME/WE” at his “virtual playground.”]

This may sound sappy, but information works like love: when you give it away, you still get to keep it. And when you give it back, it grows.

Which has always been the case. But in Reality 2.0, it should become a lot more obvious.

Read the whole story
cjheinz
4 days ago
reply
Lexington, KY; Naples, FL
Share this story
Delete

Elon Musk’s preposterous and possibly harmful prediction about robotic surgery

1 Comment

The idea that robots will be the best surgeons on earth anytime soon is absurd, and I challenged him about it on X:

Why did I bother to offer such a bet? Here are three reasons.

  • Elon’s timeline predictions are notoriously, and to my mind, obviously, bad, yet all too often reported as gospel. I have used bets as a way to get people to take them less seriously. The last time I offered him a million dollar bet (offer raised to $10M by Damion Hankejh) was back in April 2024, after Musk claimed that AI would exceed the intelligence of all people by the end of 2025. That of course didn’t come to pass. Indeed, in his recent interview with The Economist Musk himself quietly backpedaled to 2031, shades of his regular re-predictions around autonomous vehicles. The surgery prediction, too, will surely be repackaged with a new date, at a later date. Elon Musk is, like a lot of LLMs, frequently wrong and never in doubt. Enough already.

  • Regarding robotic surgery timelines, Musk is so deeply wrong it’s hard to fathom. I asked esteemed roboticist Rodney Brooks what he thought of Elon Musk’s claim, and he fired back with a firm opinion five minutes later, describing Musk’s claim as “Completely crazy talk”, elaborating as follows:

    There are no lab demonstration remotely close to doing surgery on a living test animal, even with a set of arms solidly affixed to the ground rather than being on top of a two legged balancing platform. Just the problem of seeing what is happening in the way a surgeon does is not even lab demonstrated. What we will see over time is more non-invasive surgeries and they will be a team of AI and geometry based sensing along with expert surgeons over the next few years, and only then will the stuff be good enough to use on pigs, and only many more years of refinement will we get to FDA (or whichever agency) that lets these things be tried on humans. See my weekend blog post at rodneybrooks.com/blog on how everyone gets time scales wrong.

    When I asked Brooks about the state of the art in existing robotic surgery trials, he added this

    All of them still have a human in the loop. Mako surgical from Stryker (I was the first VC who invested in them around 2000) for knee replacement, is closest, as it is not soft tissue but bones that can be accurately imaged with xrays during the surgery, and it is largely geometry, but then a whole lot of stuff the human worries about and supervises so that it doesn’t accidentally damage blood vessels or nerves.

    There is just no way all this gets sorted out by the end of the decade. What Musk told Diamandis is just not happening.

  • Just as Hinton’s famous (and famously wrong) 2016 pronouncement about no longer needing to train radiologists probably scared away potential radiologists, Musk risks scaring away potential surgeons. That’s really bad, especially that his premise is probably off by a least a decade in the best case and quite possibly more.

It would be nice if these Tech CEOs were more accountable for what they said. That’s the real reason I offer these bets. And the real reason the CEOs never take them.

Please help me keep the field of AI accountable, and subscribe.

P.S. Jason Calacanis of the All-In podcast has expressed some interest in turning this debate into a bet on Polymarket. I will report back if he commits. For criteria I pointed a list to ten difficult surgeries as a possible metric; no word back thus far.



Read the whole story
cjheinz
8 days ago
reply
They'll never put any skin in the game. Just keep the hype machine spewing bullshit, there's enough rubes out there for it to keep working ...
Lexington, KY; Naples, FL
Share this story
Delete
Next Page of Stories