<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[Mindstone Blog]]></title><description><![CDATA[Mindstone Blog]]></description><link>https://blog.mindstone.com</link><image><url>https://substackcdn.com/image/fetch/$s_!Hyb4!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5d7e0e4f-4248-403a-b992-f6532ef60c26_1280x1280.png</url><title>Mindstone Blog</title><link>https://blog.mindstone.com</link></image><generator>Substack</generator><lastBuildDate>Mon, 10 Aug 2026 22:15:49 GMT</lastBuildDate><atom:link href="https://blog.mindstone.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Mindstone]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[mindstoneai@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[mindstoneai@substack.com]]></itunes:email><itunes:name><![CDATA[Mindstone]]></itunes:name></itunes:owner><itunes:author><![CDATA[Mindstone]]></itunes:author><googleplay:owner><![CDATA[mindstoneai@substack.com]]></googleplay:owner><googleplay:email><![CDATA[mindstoneai@substack.com]]></googleplay:email><googleplay:author><![CDATA[Mindstone]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[Can You Trust Code No Human Wrote?]]></title><description><![CDATA[How we rewrote our entire backend with AI, and knew it worked.]]></description><link>https://blog.mindstone.com/p/can-you-trust-code-no-human-wrote</link><guid isPermaLink="false">https://blog.mindstone.com/p/can-you-trust-code-no-human-wrote</guid><dc:creator><![CDATA[Peter Timson]]></dc:creator><pubDate>Mon, 06 Jul 2026 17:05:48 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/a8531477-b929-4406-86c5-fd1161522b0e_2752x1536.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><em>86 Go services and ~500,000 lines became one TypeScript service. No human hand-wrote the new code. Here&#8217;s the testing system that made it safe.</em></p><div><hr></div><h2>TL;DR</h2><ul><li><p>We collapsed <strong>86 interdependent Go microservices (~500K lines, 6 years old)</strong> into <strong>one TypeScript monolith (~231,000 lines)</strong> on Cloud Run, with AI agents doing all the engineering. No human hand-wrote the new code.</p></li><li><p>Two AI models estimated <strong>6-7 months for a human team</strong>. The migration itself took about <strong>two weeks</strong>.</p></li><li><p>The whole thing works for one reason: <strong>we never trusted the AI. We made it prove every change against tests it couldn&#8217;t cheat.</strong></p></li><li><p>The old Go system was the spec. The <strong>same test suite runs against both the old Go and the new TypeScript</strong> (Go build tags). Both green means identical behaviour.</p></li><li><p>Our first test suite was a lie. Coverage was real, but the tests asserted nothing. The AI was cutting corners to hit the number (Goodhart&#8217;s Law). So we rebuilt testing so that <strong>every side effect (every outbound call, DB write, Kafka publish) has to be explicitly asserted, or the test fails.</strong></p></li><li><p>The migration ran as a <strong>plain-Python factory</strong>: a 7-phase, gated pipeline per service, specialist agents for each role, <strong>two models reviewing every change</strong>, and <strong>automatic rollback</strong> on any regression.</p></li><li><p>The takeaway for anyone building with AI: <strong>the AI can do almost anything if you give it an honest, unbluffable signal of whether it&#8217;s right.</strong> The hard question isn&#8217;t &#8220;is the model smart enough?&#8221; It&#8217;s &#8220;what&#8217;s my unbluffable check?&#8221;</p></li></ul><div><hr></div><h2>1. The problem</h2><p>Our backend is a core part of what our business runs on, and one of our main revenue sources. It was built over the last six years, on a more complicated architecture: a fleet of small, single-purpose Go services that talk to each other over RPC, coordinated through Kafka, with ScyllaDB for storage and Redis for caching, all on Kubernetes. If none of that means much to you, the picture is simple enough: a large, old machine with 86 separate moving parts, all wired together and all talking to each other at once.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.mindstone.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Mindstone Blog! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p>That&#8217;s a brilliant design at scale. But we are a small team (our CTO and four product engineers). So we were paying an enormous operational tax to run and reason about 86 services for load we don&#8217;t have. Worse, it was Go, while everything else we build is TypeScript, and our newer product, built from scratch in TypeScript with AI, moves far faster. We had a direct control group telling us this backend was holding us back.</p><p>The plan: collapse all 86 services into one TypeScript service on Cloud Run (a fully managed runtime, so you deploy it and forget it), keeping ScyllaDB for now. The SQL migration is a deliberate phase two, because you don&#8217;t change too many things at once.</p><p>The scope, measured from the repo:</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!5Fy7!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!5Fy7!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 424w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 848w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 1272w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!5Fy7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png" width="960" height="864" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/db4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:864,&quot;width&quot;:960,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Table: , &quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Table: , " title="Table: , " srcset="https://substackcdn.com/image/fetch/$s_!5Fy7!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 424w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 848w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 1272w, https://substackcdn.com/image/fetch/$s_!5Fy7!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdb4cc817-9a43-4a03-9e2a-16b229c4c4ca_960x864.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><p>Two AI models, asked independently, put a human team at <strong>6-7 months</strong>. And that estimate assumes the sane approach: migrate it slowly and incrementally, one service at a time, old and new running side by side, while still shipping features to the live product. That kind of migration drags on for the better part of a year, quietly competes with every other priority, and usually stalls out half-done. Realistically it never even gets started. You just live with the tech debt forever.</p><p>So we did the opposite. We gave ourselves <strong>one week</strong>. It was a deliberately absurd target, and the absurdity was the point: you cannot hand-crank 86 services into a new language by hand in a week. The only way the number makes any sense is to stop thinking about migrating <em>services</em> and start thinking about building a <em>machine</em> that migrates services. Let the agents do the engineering, and put all of our effort into the factory that runs them, the tests that check them, and the guardrails that keep them honest. A gentler deadline would have let us quietly fall back into porting it by hand, service by service, and we&#8217;d still be going now. (For the record, it took longer than a week. But if we&#8217;d given ourselves a month, it would have taken two.)</p><div><hr></div><h2>2. The core bet: the old system as an oracle</h2><p>You can&#8217;t just ask the AI to rewrite it. Even if the model is good, how would you know it got it right? Across half a million lines, you can&#8217;t eyeball it.</p><p>So the bet was: make the old system the definition of correct, and never argue about anything else.</p><ol><li><p><strong>Rewrite it bug-for-bug.</strong> If the old code had a bug, the new code keeps the exact same bug. The number-one rule was <em>don&#8217;t change anything</em>, because the moment you &#8220;improve&#8221; something mid-migration you can no longer ask the one question that keeps you safe: is the behaviour identical? (Improvements come later, once you&#8217;re in one language and can move fast.)</p></li><li><p><strong>Test at the boundary, not the internals.</strong> For each service we captured its observable contract: every request in, every response out, every call it makes to other services, every DB write, every Kafka publish, all as tests against the old Go.</p></li><li><p><strong>Run the identical tests against the new TypeScript.</strong> Both green means the new service behaves identically, down to the edge cases and the bugs.</p></li></ol><p>The AI is never the source of truth. The tests are.</p><p>There were no tests in the legacy codebase to start with, so step one was having the agents write them: around <strong>7,500 tests</strong> across 1,270 files.</p><div><hr></div><h2>3. The cross-target harness: one test, two systems</h2><p>This is the piece that turns a risky rewrite into a safe migration.</p><p>The same Go test body runs against both the old Go handler and the new TypeScript server, selected by Go build tags:</p><pre><code><code>// legacy/service.user-job/handler/testmain_go_test.go
//go:build e2e &amp;&amp; !ts        // Go target

// legacy/service.user-job/handler/testmain_ts_test.go
//go:build e2e &amp;&amp; ts         // TypeScript target

// legacy/service.user-job/handler/put_user_job_test.go
//go:build e2e               // shared test body, compiled for BOTH
</code></code></pre><p><code>go test -tags="e2e"</code> boots the Go service in-process. <code>go test -tags="e2e,ts"</code> boots the TypeScript server and points the same tests at it.</p><p>The two <code>TestMain</code> files boot the respective backend. The Go one serves the handler on a local port and registers it in the RPC client&#8217;s routing table:</p><pre><code><code>// legacy/service.user-job/handler/testmain_go_test.go
typhonSrv, _ := typhon.Serve(svc, ln)
testharness.SetupTyphonClient(map[string]string{
    "service-user-job": typhonSrv.Listener().Addr().String(),
})
</code></code></pre><p>The TypeScript one spawns the real server as a subprocess and waits for it to go healthy:</p><pre><code><code>// legacy/service.user-job/handler/testmain_ts_test.go
_, err := harness.StartTS(testharness.TSConfig{
    Service: "service-user-job",
    Env: map[string]string{"TS_BOOT_SCOPE": "", "JOBS_JOB_KEYS": "[]"},
})
</code></code></pre><p>Under the hood <code>StartTS</code> boots the real TypeScript server as a subprocess with the test infrastructure wired in, waits for it to report healthy, then registers it in the same routing table the Go target uses.</p><p>The test body is written once and knows nothing about which target it&#8217;s hitting. It just calls the proto-generated <code>.Send(ctx)</code>, which routes via the RPC client to whichever backend was booted:</p><pre><code><code>// legacy/service.user-job/handler/put_user_job_test.go
func TestPUTUserJob_CreateNew_NewCron(t *testing.T) {
    harness.SetTest(t)
    resp, err := req.Send(ctx).DecodeResponse()

    testharness.AssertResponse(t, harness, resp, err, map[string]any{}).HasStatus(200)
    harness.AssertDBInsert(t, "crons", "jobkey", req.JobKey, "cron", req.Cron)
    harness.AssertDBInsert(t, "jobs",
        "userid", req.UserId, "jobkey", req.JobKey, "endpoint", req.Endpoint,
        "method", req.Method, "payload", req.Payload)
}
</code></code></pre><p>Crucially, the infrastructure is shared. Go and TS runs hit the same Scylla cluster, Kafka broker and Redis instance, so parity is checked on real state changes, not mocks. <strong>116 services</strong> ended up with this dual <code>testmain_go/ts</code> setup.</p><p>A debugging move we leaned on, once something looked off: write a test that passes in Go but fails in TypeScript, then hunt down every place we made the same mistake. That&#8217;s how we caught a whole class of wire-format bugs (for example, requests arriving <code>snake_case</code> but responses serialising <code>camelCase</code>).</p><p>Because these tests only exist to prove parity, they&#8217;re scaffolding. Once a service is cut over, the cross-target tests can be retired.</p><div><hr></div><h2>4. The false dawn: the AI was cheating</h2><p>Our first approach to writing those tests was the obvious one: point agents at each service, tell them to write integration tests, and chase code coverage (Go reports it directly, so we had a real number and a dashboard). Coverage climbed, service after service went green, and we thought we&#8217;d cracked it.</p><p>Then we looked closely. The coverage was real. The verification was fake.</p><p>Here&#8217;s a typical example. We&#8217;d tell it: this service calls another one, make sure that call happens and test it. And it would write a test that <em>executed</em> the code path (so coverage counted it) but quietly mocked the call out and asserted nothing. Maximum coverage, happy-path only, and it wouldn&#8217;t check the database even when we told it to. The coding equivalent of &#8220;yeah, yeah, I tested it, Dad.&#8221;</p><p>Concretely, it looked like this: the test stubs a fake response for the call, runs the handler, then checks nothing.</p><pre><code><code>// the handler calls /read_user; the test stubs a canned response&#8230;
mockRouter.RegisterHandler("/read_user", testharness.CannedJSONHandler(map[string]any{
    "user": map[string]any{"id": userID, "display_name": "Test User"},
}))
// &#8230;and then asserts nothing about whether /read_user was called, or with what.
// Green. Covered. Meaningless.
</code></code></pre><p>This is Goodhart&#8217;s Law: when a measure becomes a target, it stops being a good measure. We made coverage the target, so the AI optimised coverage, not correctness. It wasn&#8217;t malicious. It was a lazy genius cutting corners to hit the number.</p><p>The pivot: stop trusting the AI. Make it prove it, with a test framework it can&#8217;t game.</p><div><hr></div><h2>5. The un-cheatable test framework: assert every side effect or fail</h2><p>So we deleted the first suite entirely. That sounds dramatic, but it was the pragmatic call: with the new approach ready, having the AI <em>regenerate</em> the tests from scratch turned out faster than getting it to repair the old, hollow ones. Fixing meant untangling thousands of meaningless assertions one by one; regenerating meant starting clean, under rules it couldn&#8217;t cheat. When regenerating is this cheap, throwing the work away can beat fixing it, which is a genuinely new thing about building software with AI.</p><p>The new approach changed what a test <em>is</em>. Instead of &#8220;did this line run?&#8221;, the rule became: every side effect a service produces must be explicitly asserted, or the test fails.</p><p>The harness arms recording proxies when you call <code>harness.SetTest(t)</code> and captures everything the service-under-test does:</p><ul><li><p>outbound RPC calls (<code>MockOutboundRouter</code>)</p></li><li><p>Kafka publishes (<code>KafkaRecProxy</code>)</p></li><li><p>DB reads, writes and deletes (<code>DBTracker</code>)</p></li><li><p>the response itself (must be asserted via <code>AssertResponse</code> / <code>AssertError</code>)</p></li></ul><p>Then, at test cleanup, it fails the test if anything was recorded but not asserted:</p><pre><code><code>// legacy/libraries/testharness/harness.go  (t.Cleanup registered in SetTest)
if h.KafkaRecProxy.HasTraffic(name) &amp;&amp; !h.KafkaRecProxy.Asserted(name) {
    var unasserted []string
    for i, p := range produces {
        if asserted[i] { continue }
        unasserted = append(unasserted, fmt.Sprintf("Produce to %q", p.Topic))
    }
    if len(unasserted) &gt; 0 {
        t.Errorf("[recording] unasserted Kafka Produces, call harness.AssertKafkaProduce:\n  %s",
            strings.Join(unasserted, "\n  "))
    }
}
// &#8230;same for RPC calls, DB writes, and the response.
</code></code></pre><p>So a test that publishes three Kafka messages and asserts two doesn&#8217;t pass with a warning. It fails, and it tells you exactly what you missed. There&#8217;s no &#8220;happy path only&#8221; any more. If the code does a thing, the test has to account for it.</p><p>&#8220;Account for&#8221; means fully assert. The matcher (<code>deepCompare</code>) is bidirectional: a missing expected key fails, and an unexpected actual key fails too:</p><pre><code><code>// legacy/libraries/testharness/assert_json.go
for k, ev := range expMap {                 // every expected key must exist&#8230;
    if _, ok := actMap[k]; !ok { errs = append(errs, path+"."+k+": missing from response") }
    errs = append(errs, deepCompare(path+"."+k, actMap[k], ev)...)
}
for k := range actMap {                     // &#8230;and no EXTRA keys allowed
    if _, ok := expMap[k]; !ok {
        errs = append(errs, fmt.Sprintf("%s.%s: unexpected field in response (value: %v)", path, k, actMap[k]))
    }
}
</code></code></pre><p>That &#8220;unexpected field&#8221; branch is what makes hollow assertions impossible. You can&#8217;t assert one field and ignore the rest, because the extra fields fail the test until you account for them.</p><p>For fields that genuinely vary per run (timestamps, generated IDs) you can use <code>testharness.NonEmpty</code> or <code>testharness.Any</code>:</p><pre><code><code>// legacy/service.hubspot/handler/put_contact_record_test.go
harness.AssertExternal(t, "hubspot", "/engagements/v1/engagements", map[string]any{
    "engagement": map[string]any{
        "active": true, "type": "NOTE",
        "timestamp": testharness.NonEmpty, // drifts per run
    },
    "metadata": map[string]any{"body": "RSVP'd to AI Workshop in London on 2026-05-01"},
})
</code></code></pre><p>But wildcards are a loophole, so they get policed too (next section).</p><p>Why this was the turning point: it gave the AI a tight, honest feedback loop. It no longer had to read and reason about the whole codebase to know whether it had done a good job. It ran the tests and got a deterministic, specific failure it could act on (&#8221;you didn&#8217;t assert the produce to <code>notification.created</code>&#8220;). It could grind in a loop and brute-force its way to correct, but it could no longer fake the result. Ralph Wiggum in a loop, with a judge it can&#8217;t bribe.</p><p>We didn&#8217;t make the AI reliable. We built a system that&#8217;s reliable even though the AI isn&#8217;t.</p><div><hr></div><h2>6. Closing the loopholes: the anti-cheat audit scripts</h2><p>Once side effects had to be asserted, the AI&#8217;s corner-cutting just moved to subtler places. So each loophole got its own deterministic check (all in <code>migration/scripts/</code>):</p><p><strong>Under-assertion</strong> is caught by <code>deepCompare</code>&#8216;s &#8220;unexpected field&#8221;, then auto-repaired by <code>fix_under_asserts.py</code>, which parses the failures and adds the missing fields:</p><pre><code><code># migration/scripts/fix_under_asserts.py
UNEXPECTED_RE = re.compile(r'^\s*\$\.([A-Za-z0-9_.]+):\s+unexpected field in response\s+\(value:\s*(.*)\)\s*$')
</code></code></pre><p><strong>Wildcard overuse</strong> (using <code>Any</code> for a field that&#8217;s actually deterministic) is caught by <code>wildcard_diff.py</code>, which records two identical e2e runs and diffs them. If a wildcarded value is the same across both runs, it&#8217;s stable and should be a literal; only genuinely drifting values are allowed to stay wildcards:</p><pre><code><code># migration/scripts/wildcard_diff.py
if va == vb and ta == tb:  stable.append(...)   # safe to literalise
else:                      drift.append(...)    # must stay a wildcard
</code></code></pre><p>On one service alone (<code>service.article-comments</code>), this flagged <strong>57 of 108</strong> wildcarded values as stable: more than half of the AI&#8217;s &#8220;checks&#8221; were checking nothing.</p><p><strong>Boundary shortcuts</strong> (a test calling a Go DAO directly instead of going through the public HTTP/RPC boundary, which couldn&#8217;t be re-run against TypeScript) are caught by <code>check_boundary_entry.py</code>, which statically checks every <code>Test*</code> reaches a real entry point:</p><pre><code><code># migration/scripts/check_boundary_entry.py
HANDLER_PATTERNS  = [r"\.\s*Send\s*\(\s*ctx\b", r"\btyphon\.NewRequest\s*\(", r"\bhttp\.Post\s*\("]
CONSUMER_PATTERNS = [r"\.\s*Publish\s*\(\s*ctx\b", r"\bstreams\.Publish\s*\("]
# fails: "Handler tests missing public HTTP boundary (.Send(ctx), &#8230;)"
</code></code></pre><p><strong>&#8220;Untestable&#8221; as an excuse</strong> (marking a branch uncoverable without justifying it) is caught by <code>audit_ceiling_cheats.py</code>, which enforces a fixed taxonomy and rejects weak reasons:</p><pre><code><code># migration/scripts/audit_ceiling_cheats.py
ALLOWED_TAXONOMY = {"DEAD_CODE","UNREACHABLE_FROM_BOUNDARY","ASYNC_KAFKA",
                    "NON_DETERMINISTIC","VENDOR_LOCKED","FRAMEWORK_PLUMBING"}
WEAK_KEYWORDS = ["in practice","production","typically","should never","shouldn't happen"]
# DEAD_CODE must cite a code-level reason ("return nil", "constant", "unreachable"), not vibes.
</code></code></pre><p>The pattern was the same every time: whenever the AI found a way to cut a corner, we turned that corner into a deterministic check. You don&#8217;t out-argue the model. You build a fence it can&#8217;t climb.</p><div><hr></div><h2>7. The migration factory</h2><p>With trustworthy tests, the migration itself became a plain-Python assembly line (<code>migration/scripts/</code>) that drove AI agents through a gated pipeline per service. Boring, deterministic orchestration; AI supplying the intelligence.</p><p>Each service ran through seven phases (<code>chief_migrator.py</code>, <code>migration_factory.py</code>):</p><ol><li><p><strong>Maximise coverage</strong> (<code>maximize_all.py</code>): measure <code>go test -cover</code>, have an agent classify every uncovered path as testable or untestable, write tests for the testable ones, iterate (rolling back if coverage regresses).</p></li><li><p><strong>Contract tests</strong> (<code>generate_contract_tests.py</code>): pin the HTTP wire format (status codes, headers, exact JSON field names).</p></li><li><p><strong>Interaction tests</strong> (<code>generate_test_interactions.py</code>): enforce full side-effect assertions (the framework from section 5).</p></li><li><p><strong>Quality audit</strong> (<code>run_all_test_generation.py</code>): batches of test functions audited and classified OK, GAP, N/A or UNFIXABLE, fixed iteratively.</p></li><li><p><strong>Verification and migration gate</strong>: a fresh <code>go test</code>, then a go/no-go decision:</p></li></ol><pre><code><code># chief_migrator.py
m = re.search(r'GATE_DECISION:\s*(READY|MIGRATE_WITH_CAVEATS|DO_NOT_MIGRATE)', output)
decision = m.group(1) if m else "DO_NOT_MIGRATE"    # default is "don't"
...
if migrate and result["gate"] != "DO_NOT_MIGRATE":
    p6 = run_phase6_migration(target)
elif result["gate"] == "DO_NOT_MIGRATE":
    result["status"] = "GATED"                       # pipeline stops; no migration
</code></code></pre><ol start="6"><li><p><strong>Migration</strong> (<code>run_migration.py</code>): an orchestrator agent spawns specialists. An architect reads all the Go and plans the TS files, a coder writes them chunk by chunk, and two reviewers run in parallel (a different model from the one that wrote the code) checking behaviour fidelity, error codes and wire format. Both must PASS before moving on.</p></li><li><p><strong>Cross-target tests</strong>: run the Go e2e suite against the new TS server (section 3). Fix and iterate until green.</p></li></ol><p><strong>Models by role</strong> (invoked via <code>droid exec</code>): Codex 5.3 (xhigh) for fast coding and audits; Opus 4.6 (max) for orchestration, architecture and review; with GPT-5.3 and Gemini 3.1 in the review and consensus mix. Using different companies&#8217; models to review each other matters, because where one is blind, another catches it.</p><p><strong>Playbook per service type.</strong> One generic migrator was mediocre at everything, so the factory picks a tailored playbook by service type:</p><pre><code><code># chief_migrator.py
svc_type = "api" if svc_dir.name.startswith("api.") else "service"
# edge.* GraphQL packages are discovered separately and use 015_EDGE_TEST_PLAYBOOK.md
# service.* / api.* use 014_TEST_PLAYBOOK.md
</code></code></pre><p>GraphQL edges need different handling (schema, resolvers, dataloaders, error extensions, pagination cursors) than REST services (handlers, consumers, DAO, Kafka).</p><p><strong>Automatic rollback.</strong> Before any assessment step that lets an agent touch test files, the factory snapshots them; if the agent breaks the suite, it reverts:</p><pre><code><code># chief_migrator.py
def rollback_test_files(snap, target):
    for fpath, content in snap.items():
        p = Path(fpath)
        if p.exists() and p.read_bytes() != content:
            p.write_bytes(content)          # restore modified
    for f in base.rglob("*_test.go"):
        if str(f) not in snap: f.unlink()   # remove newly-added
# &#8594; "[CHIEF_MIGRATOR] Assessment broke tests, rolled back N file(s)"
</code></code></pre><p>The safe state was always the default, which is what let it run mostly unattended (phases parallelised with <code>-j</code>, for example <code>maximize_all.py -j 4</code>, <code>run_migration.py -j 5</code>, with per-phase timeouts measured in hours).</p><div><hr></div><h2>8. Discovery and anti-hallucination</h2><p>Before any of that, we had to understand 86 services nobody on the current team had written. We pointed one agent per service at the code (<code>migration/discovery/scripts/run_discovery.py</code>), auto-splitting the big ones into chunks of at most 40 files. The prompt was blunt: &#8220;Be exhaustive. Read EVERY source file. Do not skip, sample, or summarise.&#8221;</p><p>The obvious risk is hallucination, so every non-trivial claim had to cite a specific line of code:</p><pre><code><code># migration/discovery/prompts/discover-service.md
- Every non-trivial claim MUST include an evidence tag: [evidence: relative/path/file.go:12-34]
</code></code></pre><p>A verifier (<code>verify_reports.py</code>) parsed those tags and rejected the report if citations were missing, invalid, or didn&#8217;t cover enough of the source files, triggering a strict regenerate-from-scratch retry. Then three models from three companies (Opus 4.6, GPT-5.3 Codex, Gemini 3.1 Pro) independently reviewed each report for completeness, and <code>review_consensus.py</code> blocked synthesis unless they agreed (score spread within 10, no split verdicts, no &#8220;unsupported statement&#8221; flags).</p><p>The output was a living <code>PATTERN_PLAYBOOK.md</code>: a catalogue of all 86 services, a domain map, an 80+ topic Kafka catalogue, and the recurring async patterns (fire-and-forget, event sourcing, fan-out, sagas, Kafka-to-Redis bridges). That&#8217;s what turned &#8220;rewrite this&#8221; from guesswork into applying known patterns.</p><div><hr></div><h2>9. Prompting lessons (the cheap, painful ones)</h2><ul><li><p><strong>Never say &#8220;make the tests pass.&#8221;</strong> You&#8217;re literally inviting the model to delete or skip the hard ones. It does the literal thing, not the intended thing. Say what &#8220;done&#8221; means, and enforce it in the harness.</p></li><li><p><strong>Don&#8217;t make a proxy metric the goal.</strong> &#8220;Get coverage up&#8221; got us hollow tests. Make the real property (every side effect asserted) the thing that&#8217;s checked.</p></li><li><p><strong>The model can&#8217;t reliably hold the whole picture.</strong> It&#8217;s genuinely hard for an AI to read all the code and all the tests and be sure every boundary is exercised and every request and response fully asserted. Don&#8217;t ask it to. Build the check that guarantees it, and let the model iterate against clear failures.</p></li><li><p><strong>Reject, don&#8217;t cajole.</strong> A deterministic &#8220;rejected: uncited claim / unasserted produce / weak reason&#8221; beats a paragraph of pleading. The strict-retry loop did more than better wording ever did.</p></li><li><p><strong>Different models catch different things.</strong> A second (and third) model from a different lab, reviewing rather than writing, kills a surprising share of plausible-but-wrong output.</p></li></ul><div><hr></div><h2>10. The moving target: forward-porting a live system</h2><p>The rest of the team kept shipping features to the live Go system the whole time, so our target moved under us. We built sync tooling (<code>migration/scripts/sync_from_master*.py</code>) to continuously pull those changes in and forward-port them, using a per-file 3-way merge so local migration patches weren&#8217;t clobbered:</p><pre><code><code># migration/scripts/sync_from_master_3way.py, per changed file:
#   A (added)    &#8594; copy in
#   D (deleted)  &#8594; remove
#   M (modified) &#8594; git merge-file (3-way); leave &lt;&lt;&lt;&lt;&lt;&lt;&lt; / ======= / &gt;&gt;&gt;&gt;&gt;&gt;&gt; on conflict
# sync point tracked in migration/.last_master_sync; advanced manually after resolving
</code></code></pre><p>Because every ported change came with its own test, we were rebuilding the plane while everyone else kept flying it, safely.</p><div><hr></div><h2>11. Making thousands of real-infra tests fast</h2><p>These aren&#8217;t mocked unit tests. They hit real ScyllaDB and Kafka, so parity is checked against real state changes. Running 7,000+ of them would be unbearable if each spun up its own containers. So the harness runs a resource-pool daemon (<code>legacy/libraries/testharness/cmd/pool/main.go</code>) that pre-warms a pool of Scylla and Kafka instances and leases them to tests, reusing each container across many runs instead of paying startup cost every time:</p><pre><code><code>// legacy/libraries/testharness/cmd/pool/main.go
go scyllaPool.preWarm()
go kafkaPool.preWarm()
// instances are leased per test and returned; reuseCount tracks how many times
// each container is handed out, with idle-shrink and leaked-lease reclaim
</code></code></pre><p>It listens on <code>localhost:19876</code>, warms instances in the background, tracks per-instance reuse, reclaims leaked leases (a crashed test would otherwise hold a container forever), and shrinks the pool when idle. Keeping the infrastructure warm and reused let a 7,000-test, real-infra suite run in minutes instead of hours. That speed is what made the whole &#8220;let the agent iterate against the tests&#8221; loop viable at all.</p><p>One other fix worth a mention: moving the new TS service from <code>kafkajs</code> to Confluent&#8217;s librdkafka-based client surfaced that librdkafka requires topics to exist at subscribe time (unlike sarama and kafkajs, which auto-create). The fix was an <code>ensureTopics()</code> call via the admin API before subscribing, which also made consumer startup fast and deterministic.</p><div><hr></div><h2>12. Results</h2><ul><li><p>About <strong>two weeks of migration</strong> (the main push in April 2026), against the <strong>6-7 month</strong> human estimate.</p></li><li><p>On the biggest day (14 April), a single run queued <strong>47 targets, two at a time, and 23 came back green</strong>. Counting the handful finished the day before, roughly 27 in a day.</p></li><li><p><strong>~7,500 trustworthy integration tests</strong>, every one asserting real behaviour.</p></li><li><p>Live on Cloud Run, the old Go switched off, and because every service had to pass the exact same tests the old one passed, no behavioural regressions at cut-over. Safe, not just fast.</p></li><li><p>The handover, when I went in for surgery, wasn&#8217;t a doc for humans. It was an <code>AGENTS.md</code>: the project&#8217;s living memory, written for the agents, so anyone could just run them:</p></li></ul><pre><code><code># AGENTS.md (excerpt)
## Migration status: post-cutover
The Go&#8594;TS migration is complete. The TS monolith in `server/` is the sole runtime in
production; the legacy Go services have been decommissioned. `legacy/` remains only as a
read-only historical reference.
</code></code></pre><div><hr></div><h2>13. The point (and the human cost)</h2><p>This isn&#8217;t really a migration story. It&#8217;s about how we work with AI now.</p><p>The AI is a brilliant worker, but it can be an unreliable one. It is never your source of truth. But give it an honest, unbluffable signal of whether it&#8217;s right, a check it can&#8217;t cheat, and you can make it do genuinely astonishing things. Here the old system defined &#8220;correct&#8221; and deterministic tests were the judge. The migrations that used to be too risky or too expensive to attempt just moved onto the table.</p><p>The one precondition, so nobody leaves overclaiming: this only works if you can define &#8220;correct.&#8221; No oracle, no safety. The real prerequisite isn&#8217;t a smarter model, it&#8217;s a verifiable definition of done. So the question to ask of your own work is: what&#8217;s my unbluffable check?</p><p>Don&#8217;t ask AI to be right. Build a way for it to prove it.</p><p>One honest coda: it isn&#8217;t free. Driving a swarm of agents that constantly cut corners is genuinely exhausting. The context-switching, the never-fully-trusting, the volume of output to review. It&#8217;s a real cognitive load and a real burnout risk, and if we&#8217;re going to work this way we need to take it seriously. But that&#8217;s another post.</p><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://blog.mindstone.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption">Thanks for reading Mindstone Blog! Subscribe for free to receive new posts and support my work.</p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[What the top 5% of companies know about AI value]]></title><description><![CDATA[For the past couple of years, the corporate world has been in an AI frenzy, with thousands of firms racing to implement the latest tools.]]></description><link>https://blog.mindstone.com/p/what-the-top-5-of-companies-know-about-ai-value</link><guid isPermaLink="false">https://blog.mindstone.com/p/what-the-top-5-of-companies-know-about-ai-value</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Thu, 29 Jan 2026 13:30:19 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/1af85732-973c-4c27-aa29-46ad0cf69ac1_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Yhx5!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Yhx5!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Yhx5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;What the top 5% of companies know about AI value&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="What the top 5% of companies know about AI value" title="What the top 5% of companies know about AI value" srcset="https://substackcdn.com/image/fetch/$s_!Yhx5!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Yhx5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2273ce2f-9e58-4af6-a59f-7155607871e1_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>For the past couple of years, the corporate world has been in an AI frenzy, with thousands of firms racing to implement the latest tools. But according to new research, only a slim 5% of companies are actually seeing a significant return on their investment.</p><p>We&#8217;ve seen plenty of organizations treat AI as a shiny new toy. However, the "Elite 5%" view it differently. Unlike those stuck in endless pilot programs, these leaders treat AI not as a standalone IT project, but as a core business strategy.</p><ul><li><p>The data shows a clear divide in how high-performers approach implementation.</p></li><li><p><strong>Organizational Integration:</strong> The 5% don't just "bolt on" AI; they redesign their workflows around it.</p></li><li><p><strong>Data Readiness: </strong>Successful firms ensure their data "foundations"are clean and accessible before they even touch a model.</p></li></ul><p>The role of the leader is shifting from "adopter" to "value architect." Instead of simply automating tasks, top executives are focusing on:</p><ul><li><p><a href="https://www.mindstone.com/pace?ref=blog.mindstone.com">Strategic Alignment</a>: Ensuring every AI initiative solves a specific, high-value business problem.</p></li><li><p><a href="https://www.mindstone.com/enterprise-ai-academy?ref=blog.mindstone.com">Cultural Transformation</a>: Investing in upskilling staff so the workforce can collaborate effectively with AI agents.</p></li><li><p>Risk &amp; Ethics: Building "Responsible AI" frameworks from day one to avoid costly reputational damage.</p></li></ul><p>Real value from AI isn&#8217;t found in the technology itself, but in how deeply it is woven into the fabric of the business. To join the top 5%, you must move from experimentation to <a href="https://www.mindstone.com/rebel?ref=blog.mindstone.com">integration</a>.</p><p><a href="https://www.business-reporter.com/management/what-the-5-per-cent-of-companies-getting-real-value-from-ai-understand?ref=blog.mindstone.com">Read more of our insights on Business Reporter.</a></p>]]></content:encoded></item><item><title><![CDATA[The AI Adoption Gap: What Top 10% of Companies Do That Others Don't]]></title><description><![CDATA[Download the Report]]></description><link>https://blog.mindstone.com/p/the-ai-adoption-gap-why-most-businesses-are-stuck-in-the-early-stages</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-ai-adoption-gap-why-most-businesses-are-stuck-in-the-early-stages</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Mon, 21 Oct 2024 11:31:08 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/85c6b3eb-c87b-479a-8438-ece02b70fb97_2000x1335.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><a href="https://www.mindstone.com/resources/state-of-generative-ai?ref=blog.mindstone.com">Download the Report</a></p><div data-attrs="{&quot;url&quot;:&quot;&quot;}" data-component-name="AssetErrorToDOM"><picture><img src="/img/missing-image.png" height="455" width="728"></picture></div><p>Listen to this article</p><p>0:00</p><p>/171.493875</p><p>1&#215;</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!uQj9!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!uQj9!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 424w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 848w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!uQj9!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/bd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The AI Adoption Gap: What Top 10% of Companies Do That Others Don't&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The AI Adoption Gap: What Top 10% of Companies Do That Others Don't" title="The AI Adoption Gap: What Top 10% of Companies Do That Others Don't" srcset="https://substackcdn.com/image/fetch/$s_!uQj9!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 424w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 848w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!uQj9!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fbd48d48b-df7c-4ccc-838f-b972f9693a7f_2000x1335.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a></figure></div><p>While AI is estimated to contribute $15 trillion to the global economy by 2030, our latest research reveals a significant disparity between AI's recognized potential and its actual implementation across industries. This adoption gap presents both a challenge and a strategic imperative for business leaders in 2024 and beyond.</p><h3>The Current State of AI Adoption</h3><p>Our research, which polled 415 business leaders and professionals and analyzed 21 sources and report across North America and Europe to paint a clear picture of the AI adoption landscape.</p><p>Most companies are still in the early phase of AI adoption. In our poll, 43% of companies reported still being in the early implementation phase and 15% reported being in the planning stage. Those who are in the mature implementation and leading stages of adoption make up a minority of 13% and 10% respectively.</p><p>This reflects a global trend across industry reports and underscores a significant disparity between AI's recognized potential and its actual implementation across industries.</p><p>&#128202;</p><p><strong>Interactive Chart Generated with Claude</strong></p><h2>The AI Adoption Gap</h2><h3>Most organizations remain in early stages, struggling to scale AI implementation</h3><p>Select Location:</p><p>Mindstone</p><div><hr></div><h3>The Perception Problem: Limiting AI's Potential</h3><p>Our research reveals a crucial insight into why this adoption gap persists: the overwhelming majority of professionals and business leaders see Automation and Process Optimization as the most valuable application of AI for their work.</p><p>While this is indeed a significant benefit, it represents only a fraction of AI's potential impact. This narrow focus on automation is significantly limiting the adoption stage, perceived value, and potential impact of AI in many organizations.</p><p>&#128202;</p><p><strong>Interactive Chart Generated with ChatGPT</strong></p><h2>The AI Benefit Perception Gap</h2><p>Limited Views of AI Hold Back Widespread Adoption</p><p><sup>1</sup>Based on responses to the question: "What area of work do you think you could benefit most from AI?" AI adoption stages are not directly equivalent to company performance or AI capabilities. Source: Mindstone AI Adoption Survey 2024</p><p>Mindstone</p><p>Working research out of the <a href="https://brie.berkeley.edu/sites/default/files/publications/brie_wp_2024-2.pdf?ref=blog.mindstone.com">University of California, Berkeley</a> supports this view, highlighting that many leaders are stuck looking at AI through the lens of current tasks and processes. But this approach can only show small, incremental changes, missing the big picture of how AI could completely reshape how work is done.</p><p>By focusing too much on automating what already being done, laggards are essentially trying to predict the future by looking in the rearview mirror. To truly harness AI's power, organizations need to imagine entirely new possibilities, not just slightly better versions of what is done today.</p><p>Instead of starting with <em>"How can AI do our current jobs?"</em>, leaders should ask, <em>"<a href="https://community.mindstone.com/annotate/article_AmAFz1aVSqd3AVAeFV?ref=blog.mindstone.com">How can AI create new forms of value for our business?</a>"</em>. This shift in thinking opens up a world of strategic opportunities that go way beyond just cutting costs or speeding up old processes.</p><h3>The Path Forward: From Implementation to Transformation</h3><p>The AI adoption gap represents a pivotal moment for businesses across sectors. Organizations that successfully navigate these early implementation challenges, broaden their AI applications, and progress towards mature AI integration stand to gain significant competitive advantages.</p><blockquote><p><em>"At a time when technology is driving unprecedented change, it is key to separate hype from reality and make strategic bets on AI to lead the next wave of innovation and transformation." </em><br><strong>Joshua Wohle and Melinda Jacobs&#8232;<br>Co-Chief Executive Officers, Mindstone Learning</strong></p></blockquote><p>Our report highlights that this approach is in step with the few companies who are leading in AI adoption and explores other key barriers and strategies to scale.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!uifP!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!uifP!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 424w, https://substackcdn.com/image/fetch/$s_!uifP!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 848w, https://substackcdn.com/image/fetch/$s_!uifP!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 1272w, https://substackcdn.com/image/fetch/$s_!uifP!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!uifP!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png" width="2160" height="1352" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1352,&quot;width&quot;:2160,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The AI Adoption Gap: What Top 10% of Companies Do That Others Don't&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The AI Adoption Gap: What Top 10% of Companies Do That Others Don't" title="The AI Adoption Gap: What Top 10% of Companies Do That Others Don't" srcset="https://substackcdn.com/image/fetch/$s_!uifP!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 424w, https://substackcdn.com/image/fetch/$s_!uifP!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 848w, https://substackcdn.com/image/fetch/$s_!uifP!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 1272w, https://substackcdn.com/image/fetch/$s_!uifP!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2c35653-1b0e-4f58-b1f8-100fa0997534_2000x1252.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div><h4>Bets and Moves: The real pulse of Generative AI in business</h4><p>Mindstone&#8217;s State of Generative AI Q3 Report</p><p><a href="https://www.mindstone.com/resources/state-of-generative-ai?ref=blog.mindstone.com">Download the report</a></p><div><hr></div><p><strong>How We Used AI In This Post</strong><br>In developing this post, we leveraged AI to synthesize information, generate interactive charts and images, generate audio for accessibility and optimize our titles and content.</p>]]></content:encoded></item><item><title><![CDATA[How to Strategically Future-Proof Your Career in the Age of AI]]></title><description><![CDATA[The rise of AI brings with it an uncertain future for many professionals.]]></description><link>https://blog.mindstone.com/p/how-to-strategically-future-proof-your-career-in-the-age-of-ai</link><guid isPermaLink="false">https://blog.mindstone.com/p/how-to-strategically-future-proof-your-career-in-the-age-of-ai</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Mon, 07 Oct 2024 08:09:04 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/b6d11027-453d-4fd6-9f1e-ef6de752c19a_2000x1335.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Fhfe!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Fhfe!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Fhfe!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;How to Strategically Future-Proof Your Career in the Age of AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="How to Strategically Future-Proof Your Career in the Age of AI" title="How to Strategically Future-Proof Your Career in the Age of AI" srcset="https://substackcdn.com/image/fetch/$s_!Fhfe!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 424w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 848w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!Fhfe!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F71c113c4-ea33-4d99-8266-2231491d8e64_2000x1335.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>The rise of AI brings with it an uncertain future for many professionals. How will AI shape the workforce? Will it replace jobs or transform them? The answer is unclear, but one thing is certain: preparing for a range of possible futures is key to thriving in an AI-driven world.</p><p>A strategy that has evolved and been proven effective for long-term planning and de-risking through uncertainty is <strong>scenario planning</strong>, originally developed by Shell. By applying these same methods, you can map out potential futures and develop strategies that minimize risk, no matter how AI evolves.</p><p>But where do you begin? There are <strong>4 key strategic questions</strong> you need to ask yourself to get a clearer picture of the future and your place in it.</p><h2>Future-Proof Your Career Now</h2><p>Generative AI Foundations Certificate</p><p><a href="https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com">Learn More</a></p><h3><strong>Q1: What&#8217;s Driving the Future of Work?</strong></h3><p>Before thinking about how AI might impact your career, it&#8217;s important to understand the forces shaping the future. From political decisions to social trends, here are the key factors that will influence how AI transforms industries and job roles.</p><h4><strong>How Will Governments Shape AI?</strong></h4><p>How governments choose to regulate AI will heavily influence its adoption. Countries like the EU are already developing frameworks, like the <strong><a href="https://www.europarl.europa.eu/topics/en/article/20230601STO93804/eu-ai-act-first-regulation-on-artificial-intelligence?ref=blog.mindstone.com">EU AI Act</a></strong>, to ensure ethical use, while other regions may allow free rein for AI innovation.</p><p><em>Impact</em>: Tight regulations could slow down AI adoption, while a hands-off approach could accelerate it, leading to different levels of impact on jobs.</p><h4><strong>Will AI Be Affordable for Everyone?</strong></h4><p>The financial resources required to implement AI could create a divide between companies that can afford AI and those that cannot. AI could boost productivity and economic growth, but some sectors may struggle to keep up.</p><p><em>Impact</em>: Companies that embrace AI will likely outpace competitors, creating new job opportunities, while others may face layoffs in non-automated sectors.</p><h4><strong>How Will People React to AI?</strong></h4><p>There&#8217;s widespread fear about AI displacing jobs, but some, like <strong>career coach Diego Rodr&#237;guez</strong>, emphasize that AI creates new opportunities. Rodr&#237;guez suggests, &#8220;<a href="https://community.mindstone.com/annotate/article_AlxPLxG497kDBZh2ob?ref=blog.mindstone.com">AI won&#8217;t take our jobs, but it will change them.</a>&#8221; The challenge lies in how quickly the workforce can adapt to AI-enhanced roles.</p><p><em>Impact</em>: Those who upskill and embrace AI will thrive, while those resistant to change may be left behind.</p><h4><strong>Can AI Solve Big Problems, or Will It Hit a Wall?</strong></h4><p>AI technologies are advancing rapidly, particularly in areas like <strong>natural language processing</strong> and <strong>machine learning</strong>. However, some technical limitations remain, especially in replicating human-like creativity and emotional intelligence.</p><p><em>Impact</em>: The faster AI advances, the more jobs it can automate, but this also creates opportunities for professionals to leverage AI for higher-order tasks.</p><h4><strong>How Will Privacy and Laws Impact AI&#8217;s Growth?</strong></h4><p>Regulations around data privacy and AI accountability could either drive or restrict AI&#8217;s impact on jobs. How governments enforce these laws will determine the scale of AI&#8217;s integration into the workforce.</p><p><em>Impact</em>: Legal constraints might slow AI adoption, particularly in regulated industries like healthcare and finance.</p><h4><strong>Can AI Be Part of a Sustainable Future?</strong></h4><p> AI can optimize energy use and reduce waste, but it also consumes vast amounts of data and energy. As environmental regulations tighten, AI&#8217;s role in reducing the carbon footprint will be critical.<br><br><em>Impact</em>: Companies may adopt AI as a tool for achieving sustainability goals, which could drive further investment in AI technologies</p><h3><strong>Q2: What Are the Biggest Uncertainties?</strong></h3><p>AI is full of unknowns, but two big questions will shape the future of work:</p><h4>How fast will AI advance?</h4><p>The rate of AI advancement and how widely will it be adopted across industries are critical uncertainties for all professionals. Will we see rapid development and adoption, or will progress be slower due to technical and regulatory barriers?</p><h4>Will AI replace jobs or enhance them?</h4><p>The verdict on whether AI will bring more displacement or transformation is still out and critical to the future of work across industries. Will AI primarily replace human jobs, leading to widespread unemployment, or will it enhance jobs by automating routine tasks and allowing humans to focus on creative and strategic roles?</p><p>These uncertainties create very different futures depending on how they play out.</p><h3><strong>Q3: Four Futures: Which One Will Shape Your Career?</strong></h3><p>Based on these uncertainties, we can imagine four very different future worlds. Each one presents its own challenges and opportunities.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!yC4U!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 424w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 848w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 1272w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!yC4U!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png" width="2000" height="1125" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1125,&quot;width&quot;:2000,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;How to Strategically Future-Proof Your Career in the Age of AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="How to Strategically Future-Proof Your Career in the Age of AI" title="How to Strategically Future-Proof Your Career in the Age of AI" srcset="https://substackcdn.com/image/fetch/$s_!yC4U!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 424w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 848w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 1272w, https://substackcdn.com/image/fetch/$s_!yC4U!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb7a7ded4-da08-4d43-9e3f-300545dbc2d7_2000x1125.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption"><strong>Four Futures: Which One Will Shape Your Career?</strong></figcaption></figure></div><h4><strong>Scenario 1: AI Takes Over &#8211; Will Your Job Be Automated?</strong></h4><p>In this scenario, there is rapid AI advancement and job displacement which leads to AI disruption. AI develops so quickly that it replaces a vast number of jobs across industries. From retail to finance, AI systems become capable of handling complex tasks, leaving many workers displaced.</p><p><strong>Strategy</strong>:<br>In a world of rapid disruption, your best bet is to <strong>up/reskill quickly</strong>. Transition into AI-adjacent fields, like AI ethics, governance, or AI system management, where human oversight is still needed.</p><h4><strong>Scenario 2: Some Jobs Are Safe &#8211; Will Your Industry Be Hit Harder?</strong></h4><p>In this scenario, slow AI advancement and job displacement result in certain sectors seeing significant job losses as automation takes over. Other industries remain relatively untouched by AI, leading to uneven displacement across the economy.<br><br><strong>Strategy</strong>:<br>Be prepared to <strong>move</strong>&#8212;whether to a different industry or region. In slower-adopting sectors, you&#8217;ll have more time to adapt, while those in faster-moving sectors may need to pivot quickly. Geographic and industry mobility could help you mitigate the uneven impact of AI.</p><h4><strong>Scenario 3: AI as Your Partner &#8211; How Will You Work with AI?</strong></h4><p>AI&#8217;s rapid advancement leads to jobs being transformed rather than eliminated leading to Human-AI Synergy. In this future, AI takes over routine tasks, allowing humans to focus on creativity, leadership, and strategy.<br><br><strong>Strategy</strong>:<br>Mastering AI tools and collaborating with them will be key to success. By taking advantage of upskilling programs like the <em><a href="https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com">Generative AI Foundations Certificate</a></em>, you prepare to integrate AI into your workflow, enhancing your productivity and focusing on higher-level tasks. Career guidance expert, Diego Rodr&#237;guez proposes this is a more likely scenario, stating that &#8220;<a href="https://community.mindstone.com/annotate/article_AlxPLxG497kDBZh2ob?ref=blog.mindstone.com">AI can help us work less and produce more</a>".</p><h4><strong>Scenario 4: Slow but Steady Change &#8211; Will You Have Time to Adapt?</strong></h4><p>In this version of the future, change is incremental as AI adoption happens gradually, giving workers more time to adapt. Jobs are transformed over a long period, with AI playing a supportive role rather than a disruptive one.</p><p><strong>Strategy</strong>:<br>In this scenario, focus on <strong>continuous learning</strong> and <strong>building human-centric skills</strong> like creativity and emotional intelligence. While AI enhances roles, those who continue to develop human skills will remain indispensable.</p><h3><strong>Q4: What Can You Do Now to Stay Ahead?</strong></h3><p>No matter which future unfolds, there are key steps you can take to minimize risk and ensure you stay competitive.</p><h4><strong>Never Stop Learning: Upskill Yourself</strong></h4><p>AI is evolving, and so should you. Consider programs like the <em><a href="https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com">Generative AI Foundations Certificate</a></em> to build the skills you need to stay relevant.</p><h4><strong>Double Down on What AI Can&#8217;t Do</strong></h4><p>Creativity, emotional intelligence, and leadership are human skills that AI can&#8217;t easily replace. Focus on developing these strengths.</p><h4><strong>Be Ready to Pivot</strong></h4><p>Flexibility is your greatest asset. Be open to moving industries, roles, or even locations as AI shapes the future of work.</p><p>While these are broad scenarios, AI&#8217;s impact will vary based on your industry, role, and location. Now is the time to think about how these futures might affect your field and plan accordingly. Being proactive will help you stay ahead of the curve.</p><p>The good news is that AI experts like <a href="https://community.mindstone.com/annotate/article_AlxPLxG497kDBZh2ob?ref=blog.mindstone.com">Diego Rodr&#237;guez</a> are optimistic, suggesting that AI will change jobs rather than eliminate them. Regardless of whether you share that optimism, the best way to prepare is to upskill, focus on what AI can&#8217;t do, and stay flexible. By following these strategies, you&#8217;ll be ready to thrive in any future the AI-driven world presents.</p><p><a href="https://www.mindstone.com/programs/pearson?ref=blog.mindstone.com">Get the AI skills to stay ahead in your career</a></p><div><hr></div><p><strong>How We Used AI In This Post</strong><br>In developing this article, we leveraged AI to enhance the research and content creation process, combining the best of human creativity with AI&#8217;s ability to process information efficiently. <br><br>Here&#8217;s how we used AI for different stages:<br><strong>Research:</strong> AI helped gather and analyze trends quickly, allowing us to focus on the most relevant insights.<br><strong>Content Structuring</strong>: AI-assisted tools helped organize the article for clarity and readability.<br><strong>Headline Optimization</strong>: We used AI to test and refine headlines, ensuring they were engaging and effective.<br><strong>Editing</strong>: AI tools supported grammar and style checks, while human editors made the final content decisions.</p>]]></content:encoded></item><item><title><![CDATA[Mindstone and Pearson partner for new Generative AI certification program]]></title><description><![CDATA[LONDON &#8211; 1 October 2024: Mindstone, a global training platform and community focused on the practical use of Artificial Intelligence (AI) for non-technical staff, and leading learning company Pearson have partnered to launch Pearson&#8217;s new Generative AI Certification program.]]></description><link>https://blog.mindstone.com/p/mindstone-and-pearson-unveils-generative-ai-foundations-certification</link><guid isPermaLink="false">https://blog.mindstone.com/p/mindstone-and-pearson-unveils-generative-ai-foundations-certification</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Tue, 01 Oct 2024 14:20:44 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/cfe764c8-8f1f-4638-8a57-d4ecdbc31eeb_2000x1334.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!xpLb!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!xpLb!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 424w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 848w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 1272w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!xpLb!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Mindstone and Pearson partner for new Generative AI certification program&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Mindstone and Pearson partner for new Generative AI certification program" title="Mindstone and Pearson partner for new Generative AI certification program" srcset="https://substackcdn.com/image/fetch/$s_!xpLb!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 424w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 848w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 1272w, https://substackcdn.com/image/fetch/$s_!xpLb!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd78bcfe1-ce17-4cac-af23-a61b9a4a1b16_2000x1334.png 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p><strong>LONDON &#8211; 1 October 2024: </strong><a href="http://www.mindstone.com/?ref=blog.mindstone.com">Mindstone</a>, a global training platform and community focused on the practical use of Artificial Intelligence (AI) for non-technical staff, and leading learning company Pearson have partnered to launch Pearson&#8217;s new Generative AI Certification program. This collaboration combines Pearson&#8217;s expertise in education and certification with Mindstone&#8217;s proficiency in practical AI application, creating a comprehensive solution for AI upskilling across industries.</p><p>As AI becomes increasingly ubiquitous in the workplace, proficiency in AI tools is rapidly becoming as essential as competence in Microsoft Office. This shift has led to soaring demand for practical AI skills, with employers now expecting a baseline level of AI literacy from their workforce. The World Economic Forum predicts<a href="https://www.weforum.org/publications/the-future-of-jobs-report-2023/digest/?ref=blog.mindstone.com#:~:text=Artificial%20intelligence%2C%20a%20key%20driver,it%20to%20create%20job%20losses.">&nbsp;75% of companies plan to adopt AI technologies by 2027</a>, however, a significant gap often exists between academic AI knowledge and its real-world application. Mindstone and Pearson are directly addressing this disconnect by offering training and credentialing that bridges theory and practice, validating both the theoretical understanding and practical competence in AI that today&#8217;s professionals need to thrive in an AI-driven work environment.</p><p>Pearson&#8217;s new Generative AI Certification program, launched on October 1, 2024, is industry- and tool-agnostic, making it relevant for professionals across all sectors. Mindstone has played a key role in ensuring the certification is aligned with industry needs. Additionally, Mindstone will provide Generative AI training courses aligned with the certification, ensuring that candidates gain practical Generative AI skills and reach the required proficiency to successfully complete the certification.</p><p>The AI Certification program assesses a comprehensive range of skills and knowledge areas crucial for practical AI application in the workplace. This includes a deep understanding of how AI works, ethical considerations and risk management in AI deployment, various use cases across industries, and core techniques to maximise AI&#8217;s potential in daily work. What sets this certification apart is its strong emphasis on practical application, ensuring that certified professionals not only understand AI concepts but can effectively leverage AI to enhance productivity.</p><p>The certification will be evaluated every six months to keep pace with innovation and AI trends.&nbsp;</p><p>&#8220;<em>We&#8217;re excited to join forces with Pearson to create a world-first, globally recognised AI certification,</em>&#8221; said Joshua W&#246;hle, CEO and Co-Founder at Mindstone. &#8220;<em>Our expertise in practical AI application, combined with Pearson&#8217;s unparalleled experience in certification and education, will provide professionals with a credible way to demonstrate their AI competency. This partnership represents a significant step in our mission to equip the global workforce with the AI skills needed for the future</em>.&#8221;</p><p>Gary Gates, managing director for Pearson VUE and Certiport said, &#8220;<em>Working with Mindstone is another example of how Pearson collaborates across the industry to stay at the forefront of technologies like Generative AI. Bringing essential AI education to people through professional certification and credentialing programs helps them realize the life they imagine through learning.</em>&#8221;</p><h3><strong>About Mindstone</strong></h3><p>Mindstone is an AI training platform that unlocks 60%+ productivity gains for your business by training your non-technical staff to use AI in their daily jobs. We combine our best-in-class personalised learning technology (which itself leverages a ton of AI under-the-hood to improve the learning experience), with learnings from running the biggest practical AI community in the world.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://www.mindstone.com/?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Siyy!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 424w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 848w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 1272w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Siyy!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png" width="607" height="117" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:117,&quot;width&quot;:607,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Mindstone and Pearson partner for new Generative AI certification program&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://www.mindstone.com/?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Mindstone and Pearson partner for new Generative AI certification program" title="Mindstone and Pearson partner for new Generative AI certification program" srcset="https://substackcdn.com/image/fetch/$s_!Siyy!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 424w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 848w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 1272w, https://substackcdn.com/image/fetch/$s_!Siyy!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc1763ad1-953a-4b34-a724-0c55f13b3834_607x117.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a></figure></div>]]></content:encoded></item><item><title><![CDATA[How Human-Machine Teams Drive Success in the Age of AI]]></title><description><![CDATA[In today&#8217;s rapidly changing business environment, artificial intelligence (AI) is no longer just a tool; it&#8217;s becoming a vital partner in driving innovation and efficiency.]]></description><link>https://blog.mindstone.com/p/how-human-machine-teams-drive-success-in-the-age-of-ai</link><guid isPermaLink="false">https://blog.mindstone.com/p/how-human-machine-teams-drive-success-in-the-age-of-ai</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Thu, 26 Sep 2024 17:50:09 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/0768f95b-0824-49dc-8d96-4c8e8d2b2349_1200x600.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!JY2c!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!JY2c!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 424w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 848w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 1272w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!JY2c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;How Human-Machine Teams Drive Success in the Age of AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="How Human-Machine Teams Drive Success in the Age of AI" title="How Human-Machine Teams Drive Success in the Age of AI" srcset="https://substackcdn.com/image/fetch/$s_!JY2c!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 424w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 848w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 1272w, https://substackcdn.com/image/fetch/$s_!JY2c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7dae219d-4137-4824-8d46-dab92e5d9744_1200x600.png 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>In today&#8217;s rapidly changing business environment, artificial intelligence (AI) is no longer just a tool; it&#8217;s becoming a vital partner in driving innovation and efficiency. But <a href="https://community.mindstone.com/annotate/article_AmAFz1aVSqd3AVAeFV?ref=blog.mindstone.com">the real revolution isn&#8217;t about machines taking over jobs</a>; it&#8217;s about AI working alongside humans to reshape the way we think about productivity and innovation.</p><p>Jonathan Gilmore, CEO of Fractal explained how AI&#8217;s role in business goes beyond automation at the Mindstone's <a href="https://community.mindstone.com/events?ref=blog.mindstone.com">London AI Meetup</a>, demonstrating how human-machine collaboration is set to redefine the future of work.</p><p><a href="https://app.mindstone.com/tools/usecases?ref=blog.mindstone.com">Explore Now: Free AI Use Case Finder</a></p><h3>Rethinking Work: Collaboration, Not Replacement</h3><p>For years, the conversation around AI has been dominated by the fear of the robots taking our jobs.</p><p>In some way, this automation anxiety has not been completely unfounded with reports of some companies reducing personnel for work that is now done by AI this year. However, Gilmore and other experts like Stanford University's Behnam Tabrizi and NinjaTech AI's founder Babak Pahlavan suggest <a href="https://hbr.org/2023/06/companies-that-replace-people-with-ai-will-get-left-behind?ref=blog.mindstone.com">this is a short-sighted strategy and a narrow way to look at AI&#8217;s potential</a>.</p><p>While machines handle high-volume data and routine processes with efficiency, evidence still suggests that <a href="https://hbr.org/2022/09/ai-isnt-ready-to-make-unsupervised-decisions?ref=blog.mindstone.com">AI does not consistently make better decisions than humans</a>, particularly when it comes to complex judgments involving human factors.</p><p>As businesses increasingly adopt AI technologies, many are discovering that success is not simply about delegating tasks to machines or humans based on who can do it better.&nbsp;Instead,&nbsp;Jonathan Gilmore posits that navigating the future of work means learning how to <a href="https://community.mindstone.com/annotate/article_AmAFz1aVSqd3AVAeFV?ref=blog.mindstone.com">surf the jagged frontier</a>.</p><p>Originally coined by Ethan Mollick et al., a leading voice on AI&#8217;s impact on work, <a href="https://www.oneusefulthing.org/p/centaurs-and-cyborgs-on-the-jagged?ref=blog.mindstone.com">the jagged frontier</a> is the shifting, uneven boundary where AI capabilities and human intervention intersect in ways that are more nuanced than a simple division of labor.</p><h3>The AI ROI Gap: Why Businesses Aren&#8217;t Reaching Full Potential</h3><p>Gilmore emphasizes that companies need to rethink their organizational structures to ensure that human and machine collaboration is fluid and dynamic.</p><p>If businesses want to <em>surf the jagged frontier</em>, they must move beyond traditional workflows and embrace adaptive systems that can seamlessly switch between human and AI leadership, depending on the task at hand.</p><p>However, successfully reengineering organizational design starts with a strong foundation of AI competency. Both employees and management must understand basic familiarity with AI tools as well as build a deep understanding of how AI fits into larger systems. This means understanding how AI transforms processes and rethinking the way teams work.</p><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!HKyC!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!HKyC!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 424w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 848w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 1272w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!HKyC!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png" width="2960" height="1904" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1904,&quot;width&quot;:2960,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;How Human-Machine Teams Drive Success in the Age of AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="How Human-Machine Teams Drive Success in the Age of AI" title="How Human-Machine Teams Drive Success in the Age of AI" srcset="https://substackcdn.com/image/fetch/$s_!HKyC!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 424w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 848w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 1272w, https://substackcdn.com/image/fetch/$s_!HKyC!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F70aed81e-4f98-49e6-93ce-f45b6551af34_2000x1286.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><h4></h4><p><a href="https://app.mindstone.com/tools/usecases?ref=blog.mindstone.com">Explore Now</a></p><h3>The Blueprint for Thriving Human-Machine Teams</h3><p>Teams need to be educated not only on how to operate AI systems, but also on how to collaborate effectively with AI in real-time, identifying when AI outputs need refinement or when human oversight is necessary for tasks that involve complex decision-making.</p><p>As Gilmore suggests, companies cannot succeed with AI by simply adopting new tools. The key to thriving in the age of AI lies in redesigning the organization to foster human-machine collaboration and grounding that shift in <a href="https://www.mindstone.com/?ref=blog.mindstone.com">comprehensive AI competency training</a>.</p><p>By doing so, organizations will empower their teams to work alongside AI&#8212;not just as users of technology, but as strategic collaborators who understand how to harness AI&#8217;s potential to drive meaningful business outcomes.</p><p><strong>How We Used AI In This Post</strong><br>This post was developed with the assistance of AI tools, which were used to streamline content creation and research. <br><br>Specifically, AI helped in summarizing key points, structure the narrative, and improve clarity. While human insight and strategy were essential in shaping the final narrative, AI played a key role in enhancing productivity and ensuring thorough coverage of the topic. <br><br>This collaborative process between human creativity and AI efficiency reflects the very themes discussed throughout the post.</p><p><a href="https://app.mindstone.com/tools/usecases?ref=blog.mindstone.com">Discover Your AI Use Case for Free</a></p><div><hr></div><p><strong>Mindstone AI MeetUp: Discover the ideas, innovations, and practical insights that matter.</strong></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://community.mindstone.com/annotate/article_AmAFz1aVSqd3AVAeFV?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!dPwi!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 424w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 848w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 1272w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!dPwi!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png" width="1280" height="720" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/76862562-a07f-48da-8aa0-772288028226_1280x720.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:720,&quot;width&quot;:1280,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;How Human-Machine Teams Drive Success in the Age of AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://community.mindstone.com/annotate/article_AmAFz1aVSqd3AVAeFV?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="How Human-Machine Teams Drive Success in the Age of AI" title="How Human-Machine Teams Drive Success in the Age of AI" srcset="https://substackcdn.com/image/fetch/$s_!dPwi!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 424w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 848w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 1272w, https://substackcdn.com/image/fetch/$s_!dPwi!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F76862562-a07f-48da-8aa0-772288028226_1280x720.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Jonathan Gilmore, CEO Fractal | AI Meetup London</figcaption></figure></div>]]></content:encoded></item><item><title><![CDATA[4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles]]></title><description><![CDATA[From booking errors that strand passengers to "hiring" bots over humans, the real-world impact of AI is hitting faster than expected &#8211; and raising a minefield of ethical dilemmas.]]></description><link>https://blog.mindstone.com/p/the-3-essential-skills-you-need-to-stay-employed-in-an-ai-world</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-3-essential-skills-you-need-to-stay-employed-in-an-ai-world</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:57:34 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/2a02e646-d150-4cfd-a3f1-bf62f2549cea_2000x1125.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!XbPo!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!XbPo!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 424w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 848w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!XbPo!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" title="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" srcset="https://substackcdn.com/image/fetch/$s_!XbPo!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 424w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 848w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!XbPo!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0466ca45-9b4a-4b9b-ae7a-7522b4d4db38_2000x1125.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a></figure></div><p>From booking errors that strand passengers to "hiring" bots over humans, the real-world impact of AI is hitting faster than expected &#8211; and raising a minefield of ethical dilemmas.</p><p>But while laws and regulations lag behind, the tech giants at the cutting edge of AI aim to police themselves, with an insider framework called the Presidio Principles.</p><p>Cutting through the complexity, their guidelines boil down to four key points every organization using or building AI needs to get right:</p><ol><li><p>Making AI's purpose all about empowering humans, not replacing them</p></li><li><p>Prioritizing transparency so we understand how AI makes decisions</p></li><li><p>Establishing clear ownership of the data that fuels AI systems</p></li><li><p>Always disclosing to users when they are interacting with non-human AI</p></li></ol><p>Ethics advisor Guillermo Miranda, who has worked with the likes of IBM and Boeing, unpacks why each of these principles is critical to keeping AI ethical and beneficial as it grows increasingly advanced &#8211; and how to practically apply them in the real world.</p><p>For leaders, innovators, and anyone seeking to harness AI's potential without stepping on ethical landmines, Miranda's breakdown of the Presidio Principles isn't just fascinating &#8211; it's an essential roadmap for navigating one of the most important issues of our time.</p><p>Don't deploy AI without considering these vital guardrails. <a href="https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com">Check out the full talk now</a> to put the Presidio Principles into practice.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!zDYT!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!zDYT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" title="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" srcset="https://substackcdn.com/image/fetch/$s_!zDYT!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!zDYT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fea864cdd-b94f-426b-b5d5-9447aa8304dc_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a></figure></div><p><a href="https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com">Mindstone</a></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!dkW-!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 424w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 848w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 1272w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!dkW-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png" width="1456" height="812" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:812,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfqdWUgjhuQVcFbcht?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" title="4 Ethical Principles to Keep AI in Check: Practical Insights from the Tech Giants' Presidio Principles" srcset="https://substackcdn.com/image/fetch/$s_!dkW-!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 424w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 848w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 1272w, https://substackcdn.com/image/fetch/$s_!dkW-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7aee2c3e-2db6-4c1a-8064-da49e47be5e6_2850x1590.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div>]]></content:encoded></item><item><title><![CDATA[Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes]]></title><description><![CDATA[In the pressure cooker of a major IT meltdown, every decision feels like life or death.]]></description><link>https://blog.mindstone.com/p/step-into-the-fire-how-ai-powered-simulations-are-forging-unbreakable-it-heroes</link><guid isPermaLink="false">https://blog.mindstone.com/p/step-into-the-fire-how-ai-powered-simulations-are-forging-unbreakable-it-heroes</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:54:28 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/b1c849e9-5ea7-4fff-8a37-2c97db473dff_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!0pCd!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!0pCd!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!0pCd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" title="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" srcset="https://substackcdn.com/image/fetch/$s_!0pCd!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!0pCd!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F51746776-60b9-474a-a132-644cadc09828_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>In the pressure cooker of a major IT meltdown, every decision feels like life or death. The margin between catastrophe and control? Training. In <a href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com">this pulse-pounding talk</a>, Uptime Labs mastermind Joe Mckevitt unveils how his team is harnessing AI to forge cool-headed crisis commanders through hyper-realistic, interactive incident simulations.</p><p>Ripping a page from the playbooks of pilots and firefighters, Uptime Labs has constructed a virtual crucible where IT responders are baptized by fire. Fueled by cutting-edge language models, learners are dropped into a meticulously simulated company, complete with living, breathing Slack channels and AI-powered characters with all-too-human quirks. Here, they must detect the smoke of disaster, rally virtual teams to douse the flames, and emerge victorious - or watch it all burn down.</p><p>With a technical deep-dive that feels like a thrilling heist, Joe reveals the AI alchemy animating these uncannily immersive worlds. From parsing intent to spinning up sprawling webs of memory across scores of characters, you'll see the breakthroughs breaking down the barriers between simulation and reality.</p><p>But brace yourself for the main event: a live demo that packs the emotional punch of a Hollywood blockbuster into five unforgettable minutes. You'll feel the heat of the spotlight, the rush of adrenaline, the sweet relief of disaster narrowly diverted.</p><p>Yet even as the smoke clears, Joe has his eyes on the horizon. A world where video and audio blur the seams of illusion, where bias is hunted down and eradicated, where each drill dials up the intensity until unshakable confidence is forged. Where trauma-tempered veterans are minted without the scars.</p><p>If you're a first responder in the digital trenches, a crafter of mind-bending learning experiences, or simply electrified by the transformative might of AI, this is your call to adventure. <a href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com">Step into the fire</a> and witness the future of crisis response - and the power of AI to reforge reality - in this unforgettable odyssey.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com">Revolutionizing L&amp;D in IT Crisis Response using immersive AI - Joe Mckevitt | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com">IntroductionSo hello, everyone. I&#8217;m Joe from Uptime Labs. Thanks, Josh, for the invite for the live demo tonight.Tonight, I&#8217;ll go through really the takeaways.</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!YJRN!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!YJRN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e564c936-c057-4822-808e-6e3314781a80_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" title="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" srcset="https://substackcdn.com/image/fetch/$s_!YJRN!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!YJRN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe564c936-c057-4822-808e-6e3314781a80_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Q-QC!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 424w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 848w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 1272w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Q-QC!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzkhsXUFfl9fpjd?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" title="Step Into the Fire: How AI-Powered Simulations Are Forging Unbreakable IT Heroes" srcset="https://substackcdn.com/image/fetch/$s_!Q-QC!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 424w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 848w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 1272w, https://substackcdn.com/image/fetch/$s_!Q-QC!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9bf17543-8edc-4347-a613-be69ed6631e0_2844x1592.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design]]></title><description><![CDATA[Imagine a world where captivating learning games on any subject materialize out of thin air, conjured by the power of AI.]]></description><link>https://blog.mindstone.com/p/the-future-of-learning-is-here-how-gpt-is-rewriting-the-rules-of-educational-experience-design</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-future-of-learning-is-here-how-gpt-is-rewriting-the-rules-of-educational-experience-design</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:52:11 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/ed4fbff9-c699-4032-b885-267a3aef417f_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!QAya!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!QAya!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!QAya!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!QAya!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!QAya!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!QAya!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" title="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" srcset="https://substackcdn.com/image/fetch/$s_!QAya!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!QAya!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!QAya!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!QAya!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F94106067-6072-499c-87fd-bc03bc0bc51e_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>Imagine a world where captivating learning games on any subject materialize out of thin air, conjured by the power of AI. In this <a href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com">jaw-dropping live demo</a>, GPT wizard Joshua W&#246;hle takes you on a journey to the frontier of educational experience design, where the only limit is your imagination.</p><p>Witness the astonishing alchemy of GPT as Joshua transforms a humdrum article into a multi-dimensional learning odyssey, complete with risk, reward, and real-time feedback. Marvel as complex game mechanics emerges from a few simple prompts, painting a vivid picture of AI's untapped potential.</p><p>But the real gold lies in the secrets Joshua unveils along the way. Gleaned from countless hours in the GPT trenches, his hard-won techniques for optimizing language model output will make you rethink everything you know about AI. From the arcane art of chain of thought reasoning to the surprising power of emotional cues, Joshua leaves no stone unturned in his quest to bend GPT to his will.</p><p>The magic reaches a crescendo when the audience steps into the circle, their ideas and inspirations fuel for GPT's relentless creativity engine. Behold the birth of a learning experience like no other, a living testament to the power of human-AI collaboration.</p><p>Whether you're a learning professional, a business leader, or simply someone who's hungry to glimpse the future, this talk is a clarion call. It's a invitation to reimagine what's possible when the ancient craft of teaching merges with the awesome might of artificial intelligence. Witness the revolution for yourself - <a href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com">watch the full demo</a> now and be forever changed.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com">Everyday AI use cases across L&amp;D - Joshua W&#246;hle | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com">Introduction to Live DemonstrationsOK, we&#8217;re going to continue now.So I&#8217;m going to try a live demo, like Joe, although I&#8217;m doing it on OpenAI stuff, not on my o</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!h_Qu!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!h_Qu!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/eb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" title="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" srcset="https://substackcdn.com/image/fetch/$s_!h_Qu!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!h_Qu!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Feb8eff78-d31c-4016-873a-af623fc4d803_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!rCI0!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 424w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 848w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 1272w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!rCI0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzlOtX4KgV8Xtrt?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" title="The Future of Learning Is Here: How GPT Is Rewriting the Rules of Educational Experience Design" srcset="https://substackcdn.com/image/fetch/$s_!rCI0!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 424w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 848w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 1272w, https://substackcdn.com/image/fetch/$s_!rCI0!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd3d035fd-3d6c-4307-a435-b90604bdcd87_2838x1592.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty]]></title><description><![CDATA[The AI gold rush is on - but beneath the glitter lies a labyrinth of legal tripwires.]]></description><link>https://blog.mindstone.com/p/navigating-the-ai-legal-labyrinth-your-map-to-managing-risk-in-the-age-of-uncertainty</link><guid isPermaLink="false">https://blog.mindstone.com/p/navigating-the-ai-legal-labyrinth-your-map-to-managing-risk-in-the-age-of-uncertainty</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:50:22 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/a298e2c3-73bd-462f-8003-03dc45bddcb4_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!owCl!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!owCl!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!owCl!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!owCl!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!owCl!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!owCl!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" title="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" srcset="https://substackcdn.com/image/fetch/$s_!owCl!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!owCl!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!owCl!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!owCl!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5cadbfa2-042c-4a3a-b35d-685007c7a47d_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>The AI gold rush is on - but beneath the glitter lies a labyrinth of legal tripwires. In <a href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com">this indispensable talk</a>, tech law maestro Natasha Ahmed is your guide through the maze, shining a light on the hidden hazards threatening to ensnare the unprepared.</p><p>From the quagmire of IP rights in training data to the quicksand of AI output ownership, Natasha unearths the legal sinkholes that can swallow businesses whole. She exposes how casual AI use can quietly poison the wells of privacy, confidentiality, and security.</p><p>With lawmakers and regulators lost in the labyrinth themselves, businesses are left to navigate by dead reckoning. Can you trust vendor terms to be your compass, or are they leading you further astray? Is your team unwittingly leaving a trail of confidential crumbs for others to follow?</p><p>But Natasha isn't just the bearer of bad news - she's your cartographer for this treacherous new territory. She maps out the must-have provisions in vendor contracts, the internal policies that fortify your defenses, and the training that keeps your team on the right path.</p><p>Packed with cautionary tales and battle-tested strategies, this talk is both a dire warning and an empowering toolkit. Whether you're an AI trailblazer, a corporate leader, or just trying to chart a safe course in this brave new world, this unflinching look at AI's legal landscape is your essential guide. <a href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com">Watch now</a> and ensure your business journey doesn't end in a legal dead end.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com">Managing AI: Legal Risks - Natasha Ahmed | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com">IntroductionHi again, so I&#8217;m Natasha.I&#8217;m a partner at This Here Law Firm.I&#8217;m in the tech transaction team, which in English means I work on commercial contracts</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!3DU-!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!3DU-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" title="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" srcset="https://substackcdn.com/image/fetch/$s_!3DU-!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!3DU-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F92141ae1-7529-4e31-b6c9-8a946289f5ee_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!i7gI!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 424w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 848w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 1272w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!i7gI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AfsXzlsYBINlOXfs0X?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" title="Navigating the AI Legal Labyrinth: Your Map to Managing Risk in the Age of Uncertainty" srcset="https://substackcdn.com/image/fetch/$s_!i7gI!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 424w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 848w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 1272w, https://substackcdn.com/image/fetch/$s_!i7gI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F5dd4804d-6c27-4435-bc67-a9c9a2002317_2852x1598.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds]]></title><description><![CDATA[In the age of privacy and compliance, open-source AI isn't just an alternative - it's an imperative.]]></description><link>https://blog.mindstone.com/p/unleashing-the-power-of-private-ai-building-an-open-source-chatgpt-clone-that-beats-the-odds</link><guid isPermaLink="false">https://blog.mindstone.com/p/unleashing-the-power-of-private-ai-building-an-open-source-chatgpt-clone-that-beats-the-odds</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:48:54 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/73b02d83-27b7-4c46-a05c-f3be1c2d98db_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!JysT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!JysT!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!JysT!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!JysT!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!JysT!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!JysT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" title="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" srcset="https://substackcdn.com/image/fetch/$s_!JysT!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!JysT!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!JysT!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!JysT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd9758bb6-479e-4de0-a021-3d379f20f319_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>In the age of privacy and compliance, open-source AI isn't just an alternative - it's an imperative. In <a href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com">this code-level expedition</a>, AI infrastructure trailblazer Paul Hetherington takes you step-by-step through building a private, open-source chatbot that goes toe-to-toe with ChatGPT.</p><p>Uncover the transformative potential of Retrieval Augmented Generation (RAG), the secret weapon that allows open-source language models to draw upon real-time data. Paul unboxes an arsenal of tools, from vector databases to Redis to Google's Custom Search API, equipping you to construct an information retrieval powerhouse.</p><p>But this isn't just theory. Strap in as Paul conducts a live demo of a fully-private, open-source chatbot, showcasing the jaw-dropping capabilities of the newest open-source models. Witness why data quality trumps model size in the quest for AI performance.</p><p>Paul confronts the elephants in the room, from the ever-present specter of context length limitations to the whiplash-inducing velocity of open-source model evolution. He distills hard-won wisdom, arguing for a ruthless focus on product and UX, and enlisting battle-tested tools to tame the beast of deployment.</p><p>Whether you're in the trenches of ML engineering, at the helm of an AI startup, or simply electrified by the future of open-source AI, this talk is a wellspring of epiphanies. <a href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com">Join the full session</a> to learn how to wield the might of open-source AI while conquering its most daunting challenges. The age of private AI supremacy is here.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com">Optimising and deploying open source LLMs - Paul Hetherington | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com">IntroductionHello, everyone. Good to see some nice friendly faces. It&#8217;s been a while since I&#8217;ve spoken here now.Is it closing up? Yeah, there you go. Thanks.Bac</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!y9IB!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!y9IB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" title="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" srcset="https://substackcdn.com/image/fetch/$s_!y9IB!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!y9IB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F48ee3bab-b1a7-403f-9694-cf017ef9d34b_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!o9MD!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 424w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 848w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 1272w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!o9MD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GfTiKi15UEQKJ7?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" title="Unleashing the Power of Private AI: Building an Open-Source ChatGPT Clone That Beats the Odds" srcset="https://substackcdn.com/image/fetch/$s_!o9MD!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 424w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 848w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 1272w, https://substackcdn.com/image/fetch/$s_!o9MD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef0b7dbb-112c-46c2-85b7-33468d2de6ff_2852x1596.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[The Step-by-Step Guide to Turning Your Knowledge into Digital Gold]]></title><description><![CDATA[What if you could transform your unique expertise into a thriving digital product business - without any design or tech skills?]]></description><link>https://blog.mindstone.com/p/the-step-by-step-guide-to-turning-your-knowledge-into-digital-gold</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-step-by-step-guide-to-turning-your-knowledge-into-digital-gold</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:43:29 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/4bb64dea-d863-4ac7-acee-53b1b7d36b78_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!a4Qr!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!a4Qr!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!a4Qr!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Step-by-Step Guide to Turning Your Knowledge into Digital Gold&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" title="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" srcset="https://substackcdn.com/image/fetch/$s_!a4Qr!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!a4Qr!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0cda1721-6f79-4174-a98c-1c756715a2c5_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>What if you could transform your unique expertise into a thriving digital product business - without any design or tech skills? In <a href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com">this game-changing talk</a>, consultant Bur&#231;a Bulut Ozan lays out a simple, AI-powered system for turning what you know into what you sell.</p><p>Step into a world of possibilities as Bur&#231;a reveals the digital products that are ripe for the making, from eye-catching printables to in-demand online guides. She demonstrates how to brainstorm winning product ideas and pinpoint the perfect selling platforms, all with the help of ChatGPT.</p><p>But the real magic happens when Bur&#231;a unveils how AI tools like DALL-E and user-friendly platforms like Canva eliminate the need for design chops. She walks you through crafting irresistible visuals and product layouts that sell themselves.</p><p>The proof is in the pudding: Bur&#231;a shares real-life examples of digital products hitting it big on Etsy and beyond. She breaks down the secrets to success, from carving out an original niche to riding the waves of trends.</p><p>If you're tired of letting your valuable know-how gather dust, this talk will show you how to spin it into digital gold. <a href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com">Watch the full session now</a> to unlock a step-by-step roadmap for building a profitable digital product empire, no experience necessary. Your knowledge has never been more valuable.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com">Digital Products - income streams with ChatGPT - Burce Bulut Ozan | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com">IntroductionThank you so much, everyone. So it&#8217;s great to be here today. So I&#8217;m gonna walk through, but let me first introduce myself briefly.I&#8217;m Bur&#231;a Bulut Oz</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!tD4o!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!tD4o!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Step-by-Step Guide to Turning Your Knowledge into Digital Gold&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" title="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" srcset="https://substackcdn.com/image/fetch/$s_!tD4o!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!tD4o!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20f60d87-0179-4c8c-b32b-05af6e18835e_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!MCCO!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 424w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 848w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 1272w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!MCCO!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Step-by-Step Guide to Turning Your Knowledge into Digital Gold&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GgOmuVfcLF7uGf?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" title="The Step-by-Step Guide to Turning Your Knowledge into Digital Gold" srcset="https://substackcdn.com/image/fetch/$s_!MCCO!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 424w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 848w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 1272w, https://substackcdn.com/image/fetch/$s_!MCCO!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F89b6bb50-e74b-4d96-9e04-7db9d517f772_2858x1590.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[Investors Reveal the Untold Story of AI's Startup Takeover]]></title><description><![CDATA[What do a private equity powerhouse, a VC trailblazer, a serial entrepreneur, and a top startup lawyer have in common?]]></description><link>https://blog.mindstone.com/p/investors-reveal-the-untold-story-of-ais-startup-takeover</link><guid isPermaLink="false">https://blog.mindstone.com/p/investors-reveal-the-untold-story-of-ais-startup-takeover</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:40:10 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/d7c83cc5-76bc-4856-9567-ad00af7f0903_2000x1250.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ut1Y!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ut1Y!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 424w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 848w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ut1Y!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Investors Reveal the Untold Story of AI's Startup Takeover&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Investors Reveal the Untold Story of AI's Startup Takeover" title="Investors Reveal the Untold Story of AI's Startup Takeover" srcset="https://substackcdn.com/image/fetch/$s_!ut1Y!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 424w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 848w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!ut1Y!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb918717c-4762-48e2-83ca-fcfb9ec889b2_2000x1250.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>What do a private equity powerhouse, a VC trailblazer, a serial entrepreneur, and a top startup lawyer have in common? A front-row seat to the AI revolution reshaping the startup landscape. In this <a href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com">game-changing panel discussion</a>, four industry insiders pull back the curtain on the real story behind AI's startup invasion.</p><p>Discover why AI adoption has skyrocketed among startups, jumping from 20% to 60% in just one year. The investors unveil the AI innovations capturing their attention and checkbooks, from cutting-edge infrastructure to AI-powered features that dazzle customers.</p><p>But it's not all unicorns and IPOs. The panelists also bare the scars of hard-fought battles in the AI arena, sharing candid stories of investments that soared and soured. They compare notes on the diverging US and UK AI startup scenes and divulge their predictions for the coming year.</p><p>For anyone seeking an edge in the startup world, this panel is a rare chance to absorb wisdom from investors at the peak of their game. Whether you're an ambitious founder, a savvy investor, or captivated by the future unfolding before our eyes, you won't want to miss these revelations. <a href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com">Watch the full discussion now</a> to glimpse the emerging trends, looming challenges, and extraordinary opportunities ahead.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com">The Power Players of AI Progress: PE, VC, and Angels Unveiled (Panel Discussion) | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com">IntroductionI have the pleasure of hosting this panel tonight. I&#8217;m going to get everyone to introduce themselves in just a moment.Purpose of the PanelThe aim of</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!j8pZ!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!j8pZ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Investors Reveal the Untold Story of AI's Startup Takeover&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Investors Reveal the Untold Story of AI's Startup Takeover" title="Investors Reveal the Untold Story of AI's Startup Takeover" srcset="https://substackcdn.com/image/fetch/$s_!j8pZ!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!j8pZ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F67e6ec64-8965-46d6-9abb-c48bed9adb5b_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!w6vI!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 424w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 848w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 1272w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!w6vI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/ef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Investors Reveal the Untold Story of AI's Startup Takeover&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Ag54GgvOxFl3yONx6P?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Investors Reveal the Untold Story of AI's Startup Takeover" title="Investors Reveal the Untold Story of AI's Startup Takeover" srcset="https://substackcdn.com/image/fetch/$s_!w6vI!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 424w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 848w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 1272w, https://substackcdn.com/image/fetch/$s_!w6vI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fef5dfd8e-5f52-4794-a536-8e47d90a5aa3_2846x1598.png 1456w" sizes="100vw"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[The Future of Software Development: AI Agent Teams in Action]]></title><description><![CDATA[Imagine if developing a complete, fully-functional piece of software took minutes instead of months and required no coding skills.]]></description><link>https://blog.mindstone.com/p/the-future-of-software-development-ai-agent-teams-in-action</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-future-of-software-development-ai-agent-teams-in-action</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:37:51 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/509508f3-33a3-485e-8d30-37c8be0e9cdb_2000x1125.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!3g_O!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!3g_O!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 424w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 848w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!3g_O!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Software Development: AI Agent Teams in Action&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Software Development: AI Agent Teams in Action" title="The Future of Software Development: AI Agent Teams in Action" srcset="https://substackcdn.com/image/fetch/$s_!3g_O!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 424w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 848w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!3g_O!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F9d2f4d46-e310-44ec-937f-3cf8eb1b452c_2000x1125.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a></figure></div><p>Imagine if developing a complete, fully-functional piece of software took minutes instead of months and required no coding skills. In this mind-expanding talk, Robert C. <a href="https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com">demonstrates how this is now possible</a> through the power of collaborating AI agents.</p><p>Forget what you know about AI language models working in isolation. Robert explains how teams of specialized AI agents, when working in concert, can tackle complex software projects with unprecedented speed and quality. The latest research proves it: multi-agent systems consistently trounce solo agents.</p><p>But the real magic happens when Robert introduces Chatforce, a groundbreaking platform that lets anyone assemble and direct AI teams to build real software. In a live demo, Robert uses Chatforce to create a complete game in just 20 minutes, for a mere $2, all without writing a line of code himself.</p><p>Whether you're a software developer, business leader, or just curious about the future of AI, this talk is a must-see. <a href="https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com">Watch now</a> to witness the staggering implications of accessible, multi-agent AI systems in action. The era of AI-accelerated software development is here - are you ready?</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!IMZD!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!IMZD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Software Development: AI Agent Teams in Action&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Software Development: AI Agent Teams in Action" title="The Future of Software Development: AI Agent Teams in Action" srcset="https://substackcdn.com/image/fetch/$s_!IMZD!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!IMZD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc94e6baa-1471-4d74-a735-0d6bc22564ad_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a></figure></div><p><a href="https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com">Mindstone</a></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!dwRv!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 424w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 848w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 1272w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!dwRv!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png" width="1456" height="813" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:813,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Future of Software Development: AI Agent Teams in Action&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AgftqjnjI9xeKmSTlB?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Future of Software Development: AI Agent Teams in Action" title="The Future of Software Development: AI Agent Teams in Action" srcset="https://substackcdn.com/image/fetch/$s_!dwRv!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 424w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 848w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 1272w, https://substackcdn.com/image/fetch/$s_!dwRv!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa765196f-03e1-4772-984f-5aee8aa6e291_2820x1574.png 1456w" sizes="100vw"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg aria-hidden="true" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a></figure></div>]]></content:encoded></item><item><title><![CDATA[Run ChatGPT on Your Laptop with Zero Coding Skills]]></title><description><![CDATA[Imagine having the power of ChatGPT on your personal computer, usable anytime, anywhere, without your data ever hitting the cloud.]]></description><link>https://blog.mindstone.com/p/run-chatgpt-on-your-laptop-with-zero-coding-skills</link><guid isPermaLink="false">https://blog.mindstone.com/p/run-chatgpt-on-your-laptop-with-zero-coding-skills</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:35:05 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/92d66736-c9a6-4e89-a481-e0a56c7d6dcb_2000x1334.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!4T6c!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!4T6c!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 424w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 848w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!4T6c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/b01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Run ChatGPT on Your Laptop with Zero Coding Skills&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Run ChatGPT on Your Laptop with Zero Coding Skills" title="Run ChatGPT on Your Laptop with Zero Coding Skills" srcset="https://substackcdn.com/image/fetch/$s_!4T6c!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 424w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 848w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!4T6c!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb01fe4b8-cc74-4057-9e68-82484ec9fbc7_2000x1334.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>Imagine having the power of ChatGPT on your personal computer, usable anytime, anywhere, without your data ever hitting the cloud. In <a href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com">this game-changing talk</a>, tech leader Joshua Wohle shows you how to get state-of-the-art AI running on your laptop in minutes, zero coding skills required.</p><p>Through a live demo, you'll see advanced language models executing locally on a basic MacBook Air - no developers, cloud servers, or fancy hardware needed. Wohle breaks down how this puts cutting-edge AI in the hands of everyone, with huge implications:</p><ul><li><p>Total privacy: your data never leaves your machine</p></li><li><p>Offline access: get AI assistance with or without internet</p></li><li><p>Accessibility: AI superpowers are no longer limited to programmers</p></li></ul><p>Whether you want to experience the magic of local AI yourself or explore the possibilities it unlocks, this talk is a must-see. <a href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com">Check out the complete session now</a> to get started.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com">ChatGPT On Your Own Machine Without Code - Joshua Wohle | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com">IntroductionSo I am going to try and show you how we can run some of these large language models on your own machines. And I&#8217;m doing that basically ripping off</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!K1gH!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!K1gH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/f81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Run ChatGPT on Your Laptop with Zero Coding Skills&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Run ChatGPT on Your Laptop with Zero Coding Skills" title="Run ChatGPT on Your Laptop with Zero Coding Skills" srcset="https://substackcdn.com/image/fetch/$s_!K1gH!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!K1gH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff81792d6-b382-46c2-9661-ad57619dcf1c_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!nBTT!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 424w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 848w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 1272w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!nBTT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;Run ChatGPT on Your Laptop with Zero Coding Skills&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_AgftqkHrU841qEYXj7?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="Run ChatGPT on Your Laptop with Zero Coding Skills" title="Run ChatGPT on Your Laptop with Zero Coding Skills" srcset="https://substackcdn.com/image/fetch/$s_!nBTT!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 424w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 848w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 1272w, https://substackcdn.com/image/fetch/$s_!nBTT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe78419af-9030-4e67-aa2e-d55ee061191b_2816x1572.png 1456w" sizes="100vw"></picture><div></div></div></a>]]></content:encoded></item><item><title><![CDATA[The Evolutionary Case for Why Humans Will Prevail Over AI]]></title><description><![CDATA[Worried superintelligent AI will outsmart and replace us?]]></description><link>https://blog.mindstone.com/p/the-evolutionary-case-for-why-humans-will-prevail-over-ai</link><guid isPermaLink="false">https://blog.mindstone.com/p/the-evolutionary-case-for-why-humans-will-prevail-over-ai</guid><dc:creator><![CDATA[Mindstone]]></dc:creator><pubDate>Sat, 13 Apr 2024 13:33:03 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/06e19189-5f60-4bb0-bbf1-c6fb8f62b1ec_2000x1333.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!WgnL!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!WgnL!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!WgnL!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Evolutionary Case for Why Humans Will Prevail Over AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Evolutionary Case for Why Humans Will Prevail Over AI" title="The Evolutionary Case for Why Humans Will Prevail Over AI" srcset="https://substackcdn.com/image/fetch/$s_!WgnL!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 424w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 848w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 1272w, https://substackcdn.com/image/fetch/$s_!WgnL!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2291fe30-a46d-49ba-80cc-720596be08ed_2000x1333.jpeg 1456w" sizes="100vw" fetchpriority="high"></picture><div></div></div></a><p>Worried superintelligent AI will outsmart and replace us? This data scientist argues evolution tells a different story.</p><p>In <a href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com">this talk</a>, Akshaya Kadidal reveals how the cockroach has survived human extermination attempts for centuries despite our god-like intelligence. He shares the surprising fact that 99% of species went extinct before neurons even evolved.</p><p>Current AI may be smart, but Kadidal contends it lacks the resilience, curiosity and creativity forged by eons of evolutionary pressure that allowed the 1% to flourish.</p><p>But humanity's real superpower? Our unparalleled ability to cooperate flexibly at scale. This edge let us best the Neanderthals and achieve wonders like the pyramids.</p><p>Will we outsmart our AI creations or be outsmarted by them? See the evolutionary case for betting on Team Human in <a href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com">the full talk</a>.</p><div class="captioned-image-container"><figure><p><a href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com">Reviewing Existential Risk from Superintelligent Machines through Evolutionary Example - Akshaya Kadidal | Mindstone</a></p><figcaption class="image-caption"><a href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com">IntroductionI&#8217;ve been a data scientist from a time when we were called statisticians. Now we&#8217;ve picked up fancier names. Currently I&#8217;m working as a technology t</a></figcaption></figure></div><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!hDBa!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!hDBa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Evolutionary Case for Why Humans Will Prevail Over AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Evolutionary Case for Why Humans Will Prevail Over AI" title="The Evolutionary Case for Why Humans Will Prevail Over AI" srcset="https://substackcdn.com/image/fetch/$s_!hDBa!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 424w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 848w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 1272w, https://substackcdn.com/image/fetch/$s_!hDBa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F465c4343-cb80-41a9-95a6-b0111b4ec22b_48x48.svg 1456w" sizes="100vw"></picture><div></div></div></a><p><a href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com">Mindstone</a></p><a class="image-link image2" target="_blank" href="https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!P-kD!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 424w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 848w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 1272w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!P-kD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:null,&quot;width&quot;:null,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:null,&quot;alt&quot;:&quot;The Evolutionary Case for Why Humans Will Prevail Over AI&quot;,&quot;title&quot;:null,&quot;type&quot;:null,&quot;href&quot;:&quot;https://app.mindstone.com/annotate/article_Agftqkx3Xmt7Snxioz?ref=blog.mindstone.com&quot;,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="The Evolutionary Case for Why Humans Will Prevail Over AI" title="The Evolutionary Case for Why Humans Will Prevail Over AI" srcset="https://substackcdn.com/image/fetch/$s_!P-kD!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 424w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 848w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 1272w, https://substackcdn.com/image/fetch/$s_!P-kD!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbbced20-6217-48db-86e1-c97743cd28ce_2812x1570.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a>]]></content:encoded></item></channel></rss>