<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rust Archives | Clever Cloud</title>
	<atom:link href="https://www.clever.cloud/blog/tag/rust/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.clever.cloud/blog/tag/rust/</link>
	<description>From Code to Product</description>
	<lastBuildDate>Wed, 15 Jul 2026 14:46:36 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://cdn.clever-cloud.com/uploads/2023/03/cropped-cropped-favicon-32x32.png</url>
	<title>Rust Archives | Clever Cloud</title>
	<link>https://www.clever.cloud/blog/tag/rust/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Magnetar: a Rust Apache Pulsar client built for deterministic simulation</title>
		<link>https://www.clever.cloud/blog/engineering/2026/07/15/magnetar-rust-apache-pulsar-client-deterministic-simulation/</link>
		
		<dc:creator><![CDATA[Florentin Dubois]]></dc:creator>
		<pubDate>Wed, 15 Jul 2026 14:46:35 +0000</pubDate>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[Pulsar]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever.cloud/?p=24981</guid>

					<description><![CDATA[<p><img width="2400" height="1065" src="https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="2026.07.15 Clever Cloud Bannière Blog Magnetar EN" decoding="async" fetchpriority="high" srcset="https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en.png 2400w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-300x133.png 300w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1024x454.png 1024w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-768x341.png 768w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1536x682.png 1536w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-2048x909.png 2048w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1368x607.png 1368w" sizes="(max-width: 2400px) 100vw, 2400px" /></p><!-- wp:paragraph -->
<p><a href="https://apple.github.io/foundationdb/testing.html">FoundationDB</a> made this idea famous. Instead of relying only on unit tests and real-cluster end-to-end tests, it runs distributed workloads inside a simulated world where time, network faults, process failures, and scheduling decisions can be explored and reproduced from a seed. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md">TigerBeetle</a> pushed a complementary discipline: make invariants part of the code, assert the shape of the state continuously, and turn silent corruption into loud local failures.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we have been applying that direction to Rust infrastructure software. <a href="https://github.com/PierreZ/moonpool">Moonpool</a>, developed by Pierre Zemb, gives Rust systems a deterministic simulation environment where time, networking, tasks, randomness, and storage can be virtualized behind provider traits. <a href="https://github.com/CleverCloud/magnetar">Magnetar</a> is where we apply that approach to a client for <a href="https://pulsar.apache.org/">Apache Pulsar</a>. This is also the approach that we are taking in <a href="https://www.clever.cloud/blog/company/2026/07/01/sozu-2-1-0-udp-load-balancer-programmable-edge/">Sōzu</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is a from-scratch Apache Pulsar client driver in Rust. It is built around a sans-io protocol core, a production Tokio engine, and a Moonpool engine for deterministic simulation. This first public release is meant for engineers who want to try Magnetar, evaluate the architecture, compare behavior with existing Pulsar clients, and help shape a stronger Rust-native Pulsar ecosystem.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The goal is not only to expose a Rust API around Pulsar. The goal is to build a client whose difficult behavior can be inspected, replayed, and made to fail before production gets the chance.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">A Pulsar client is part of the distributed system</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>It is tempting to think about a client library as the easy side of a distributed system. The broker is where replication, storage, ownership, and coordination live. The client only connects, sends messages, receives messages, and acknowledges them.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That view does not survive contact with a real Apache Pulsar client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>A serious Pulsar client has to manage producers, consumers, readers, partitioned topics, multi-topic consumers, pattern subscriptions, transactions, schemas, authentication, proxy routing, broker lookup, cluster failover, reconnect, backoff, batching, chunking, ack grouping, unacked-message tracking, negative acknowledgements, retry-letter and dead-letter flows, observability, and a long list of Pulsar Improvement Proposals.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Many of the hard bugs are not about one command being encoded incorrectly. They are about time and ordering. A broker drops while a publish is in flight. A reconnect happens while a consumer has pending acknowledgements. A token refresh races with a session reset. A proxy lookup points to a new broker while the old connection is still draining. A topic migrates and the client must rebuild enough state to continue without pretending the old session still exists.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That means a Pulsar client is not just a convenience wrapper around a socket. It is part of the distributed system. It owns state that has to remain coherent while the world around it changes.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If that state is hidden inside runtime tasks, channel queues, implicit clocks, and timing accidents, then the client becomes hardest to reason about exactly when precision matters most. Magnetar starts from the opposite assumption: make the protocol state explicit, drive it through narrow boundaries, and keep the I/O outside.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">From the Rust Pulsar ecosystem to Magnetar</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar comes from experience with the Rust Pulsar ecosystem, including maintaining and using <a href="https://github.com/streamnative/pulsar-rs">pulsar-rs</a>. That work matters. It gave Rust users an Apache Pulsar client and created the practical context in which the next generation of driver work could be evaluated.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is not an article-length criticism of what existed before it. It is a continuation of the same ecosystem from a different architectural starting point. After spending time with real Pulsar usage, the shape of the next step became clearer: a Rust Pulsar driver should make the protocol/runtime boundary sharper, make difficult behavior reproducible, track parity explicitly, and make testability a first-class design constraint.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar does not begin with the public builder API. It begins with the protocol.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The user-facing API matters, and the first release already exposes a broad surface. But for a distributed client, the deeper question is what happens underneath that API when the broker moves, the connection drops, the clock advances, a timeout fires, a subscription is rebuilt, or the same trace is replayed under a different runtime.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">The sans-io core</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The heart of Magnetar is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-proto">magnetar-proto</a>. It is a synchronous protocol state machine. It has no sockets. It does not depend on Tokio. It does not spawn tasks. It does not use async. It does not read the host clock on the protocol hot path.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Its shape follows the same broad idea that made <a href="https://github.com/quinn-rs/quinn/tree/main/quinn-proto">quinn-proto</a> influential in the Rust networking world: feed bytes in, poll bytes out, poll semantic events, and ask the state machine when its next timer expires.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Conceptually, the interface looks like this:</p>
<!-- /wp:paragraph -->

<!-- wp:html -->
<div
  style="
    max-width: 780px;
    margin: 1.5rem auto;
    padding: 16px 20px;
    background: #0f172a;
    color: #e5eefc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
  "
>
  <pre
    style="
      margin: 0;
      overflow-x: auto;
      white-space: pre-wrap;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        'Liberation Mono', 'Courier New', monospace;
    "
  ><code>&gt; connection.handle_bytes(now, bytes);

connection.poll_transmit(&amp;mut out);
connection.poll_event();
connection.poll_timeout();</code></pre>
</div>
<!-- /wp:html -->

<!-- wp:paragraph -->
<p>That small shape is a large architectural choice.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>handle_bytes lets an engine feed wire bytes into the state machine. poll_transmit drains outbound frames. poll_event yields semantic events that the runtime must react to, such as authentication challenges, lookup outcomes, checksum mismatches, reconnect signals, or protocol-level transitions. poll_timeout lets the runtime ask when to wake the state machine again.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The state machine does not decide where bytes come from. It does not know whether the network is a real TCP stream, a TLS stream, a byte pipe inside a simulator, or a scripted broker in a differential harness. It does not decide what "now" means. The engine passes time in.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The public traits in magnetar-proto follow the same rule. They are not runtime services hidden behind async callbacks. They are small protocol contracts at the points where the state machine needs a decision or a transformation: <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/auth.rs">AuthProvider</a> produces authentication bytes, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/schema/mod.rs">Schema</a> defines encoding, decoding, schema data, and broker-resolved schema hooks, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/crypto.rs">MessageEncryptor and MessageDecryptor</a> describe payload crypto over bytes and message metadata, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/service_url.rs">ServiceUrlProvider</a> exposes the current service URL for failover, and <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/health_probe.rs">HealthProbe</a> uses a poll-style contract instead of binding the protocol crate to an async runtime. The pattern is deliberate: the protocol core can ask for facts, bytes, or readiness, while the I/O, caching, refresh logic, network probes, and scheduler stay outside.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This separation is not just a clean layering exercise. It is what makes the protocol testable without a broker, without a socket, and without an async runtime. A protocol bug can be reduced to a fixture: feed these bytes at this instant, poll these outputs, assert this event stream, and replay the same sequence again.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>For an Apache Pulsar client, that matters because the wire protocol is not only a happy path. It includes producer creation, consumer subscription, acks, nacks, transactions, broker errors, redirects, authentication challenges, topic migration, replicated-subscription markers, schema metadata, batching, chunking, and close paths. Each of these has state. Each state transition is easier to reason about when it is not mixed with socket reads, task scheduling, and runtime-specific wakeups.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">No channels as an architectural constraint</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar also makes an unusual Rust async choice: channel primitives are banned from the workspace.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The straightforward architecture for a network client is often producer future to channel, channel to driver task, driver task to channel, channel to consumer future. That can work, but it spreads state across queues and tasks. Backpressure becomes implicit. Close semantics become library-specific. Dropped futures can leave messages stranded in places that are hard to inspect. The debugging question becomes "where did this message go?"</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar uses a different pattern. State lives inside the protocol state machine and the runtime-owned shared connection. User-facing futures register wakers in slabs keyed by operation identifiers. The driver owns the I/O loop, feeds bytes into the state machine, drains outbound frames, and wakes the matching futures as outcomes arrive.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is not an aesthetic ban on channels. It is a way to keep ownership of state explicit. When the driver rebuilds producers after a reconnect, when a consumer waits for a message, when an ack outcome is delivered, or when a pending operation fails because a session is gone, the relevant state is in the state machine and can be inspected there.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That design has trade-offs. It puts more pressure on the correctness of the state machine. It requires careful lock ordering. It requires reviewers to understand waker registration and wakeup paths. But it also makes the behavior much easier to simulate, replay, and compare across runtimes.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Two engines, one state machine</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar ships two engines that drive the same protocol core.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The default engine is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-runtime-tokio">magnetar-runtime-tokio</a>. It is the production execution path: TCP, TLS through tokio-rustls, driver tasks, real time, real sockets, and the public PulsarClient surface most users will reach first.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The second engine is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-runtime-moonpool">magnetar-runtime-moonpool</a>. It drives the same magnetar-proto::Connection state machine through Moonpool providers. Instead of baking in the runtime, Moonpool exposes provider traits for networking, time, task spawning, randomness, and storage. Under a production-style provider bundle, the engine can run against real I/O. Under simulation providers, those same categories can be virtualized.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is where deterministic simulation becomes practical. The client can be driven in a world where time advances under control, network delivery can be reordered or interrupted, tasks run under a deterministic scheduler, randomness is seeded, and failures can be replayed from the same seed.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool is not a mock. A mock usually replaces a component with simplified behavior. That is useful for many unit tests, but it is not the same thing as exercising a real client through hard interleavings.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool is also not a normal end-to-end test. An e2e test runs the real system, which is essential, but it usually runs with real time, real networking, and failures that are difficult to reproduce once the timing has moved on.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool sits in a different space. It keeps the client code close to the real execution path while virtualizing the providers that make distributed behavior hard to reproduce. The point is not to avoid e2e tests. The point is to add a regime where failures are not anecdotes. They become seeds.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar's Moonpool engine uses the same protocol state machine as the Tokio engine. The TLS path is also driven in a way that preserves the simulation boundary: instead of relying on tokio-rustls, the Moonpool engine drives rustls::ClientConnection over the byte pipe directly. That keeps TLS handshakes under the same deterministic control as the rest of the simulated network.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Differential testing: making the engines agree</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Two engines are useful only if they do not silently become two different clients.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar therefore includes a differential harness. It runs a trace, such as connect, open producer, send, subscribe, receive, ack, seek, and close, against both the Tokio and Moonpool engines, then compares the user-visible event streams.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This matters because the Moonpool engine is used to find bugs that are difficult to expose with real time and real sockets. For that to be meaningful, the simulated engine must remain observationally aligned with the production engine at the user boundary.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If Tokio and Moonpool drift, the simulator becomes less trustworthy. If the differential harness keeps them aligned, then a seed failure in the simulated world is much more likely to point at a real property of the client, not a separate test-only implementation.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is also why Magnetar's validation policy is strict about cross-runtime coverage. Behavioral changes are expected to exercise the sans-io layer, the Tokio runtime, the Moonpool runtime, differential equivalence, and the e2e surface when applicable. That is more work than adding one unit test. It is also the cost of making deterministic simulation a real engineering tool rather than a side experiment.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Java parity as a credibility contract</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Simulation is not a substitute for feature breadth. It is what makes feature breadth less fragile.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Apache Pulsar has a mature <a href="https://pulsar.apache.org/docs/">Java client</a>, and for many users that client defines what "a Pulsar client" means. Basic produce and consume are not enough. A credible client must cover the behaviors applications rely on: batching, compression, transactions, schemas, partitioned topics, multi-topic and pattern consumers, retries, dead-letter flows, authentication providers, proxy support, failover, admin operations, and the PIPs that shape modern Pulsar usage.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar tracks Java-client parity as a public contract. The <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> carries the parity matrix and the engine-by-engine status. The article does not need to reproduce that matrix, but the matrix itself is important. It gives users a way to evaluate the project as a Pulsar client, not as a narrow experiment around one happy path.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is the reason Magnetar's first public release is broader than a minimal demo. It includes the protocol foundation, the public facade, runtime engines, admin support, authentication providers, message crypto, CLI work, observability hooks, and a growing list of PIP surfaces.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The exact reason for tracking parity is simple: users do not choose a client library only because its internal architecture is elegant. They choose it because it can represent the system they actually run. Architecture makes that surface maintainable. Parity makes it useful.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Beyond produce and consume</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The phrase "Pulsar client" can hide a lot of surface area. From the outside, the first examples usually look small: build a client, create a producer, send a payload, subscribe with a consumer, receive a message, acknowledge it. Those examples are useful because they show the entry point. They are not enough to evaluate the client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Real Pulsar applications depend on behaviors that only appear after the first demo works. A producer may need batching, compression, chunking, access modes, sequence ids, send timeouts, per-message properties, transactions, interceptors, and latency statistics. A consumer may need batch receive, cumulative acknowledgements, batch-index acknowledgements, nack backoff, ack timeout handling, retry topics, dead-letter topics, seek, pause/resume, subscription modes, and per-partition behavior. Applications with strict schemas need Avro, JSON, Protobuf, Protobuf-native, KeyValue, primitive schemas, and broker-side schema lookup semantics. Deployments with security requirements need token auth, mTLS, OAuth2, SASL, Kerberos/GSSAPI, Athenz, TLS provider choices, and a way to reason about crypto behavior without making every build drag every provider.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Those features are not independent checkboxes. They interact. Batching interacts with compression and send timeouts. Chunking interacts with sequence ids and redelivery. Transactions interact with acknowledgements. Reconnect interacts with producers, consumers, lookups, proxy routing, and failover. Observability has to describe the behavior without leaking secrets or flooding operators under churn.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar's feature work and architecture work are tied together. The more complete the surface becomes, the more important it is that the protocol state is explicit and that the runtime boundary is narrow. A broad client built on accidental state becomes harder to maintain as it becomes more useful. A broad client built on replayable state gives maintainers a better chance to keep feature growth from turning into hidden behavior.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Validation as architecture</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar's test strategy is intentionally layered because each layer catches a different class of bug.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The sans-io layer lets protocol behavior be tested without sockets or async tasks. The <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md">project testing documentation</a> currently records more than 270 unit tests in magnetar-proto. Those tests exercise the state machine directly: bytes in, events out, transmit buffers out, state transitions checked.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Runtime integration tests exercise the glue that pure protocol tests cannot cover. The Tokio engine and Moonpool engine each have their own integration surfaces, and the project enforces runtime parity so one engine does not quietly fall behind the other.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The deterministic chaos pack targets the failure schedules that motivated the architecture in the first place: reconnect, failover, virtual-clock timers, TLS handshake ordering, in-flight publishes, broker migration, and adversarial network behavior. The <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> describes a daily Moonpool seed sweep with 128 freshly rolled random seeds in parallel. The number is less important than what it represents: the client is being driven through schedules that a human would not write by hand.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Differential equivalence tests compare the two runtime worlds. They ask a direct question: if the same trace is run through Tokio and Moonpool, does the user see the same behavior?</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>End-to-end tests still matter. They keep Magnetar honest against a real Apache Pulsar broker. Simulation can make failures reproducible, but it does not replace compatibility with the system users actually deploy.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Taken together, these layers are not ceremony. They are part of the architecture. The point is not to collect large test numbers. The point is to put validation pressure exactly where distributed clients fail: protocol state, runtime boundaries, reconnect logic, timing, equivalence, and real broker behavior.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What reproducibility changes in practice</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The practical value of deterministic simulation is not that it makes tests more sophisticated. It changes the debugging loop.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>When a traditional end-to-end test fails because of timing, the first question is often whether the failure is reproducible at all. If it is not, engineers start adding sleeps, logs, larger timeouts, or retry loops. Some of those changes are useful. Many of them only move the failure somewhere else. The failure remains a story: "we saw it once in CI".</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>With a deterministic simulation, the failure should become an artifact. The artifact is a seed, a trace, and a state transition that can be replayed. The question changes from "can we make it happen again?" to "what invariant did this schedule violate?"</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That difference matters for a client library. Client bugs often sit at the boundary between user code and the broker. They are easy to misattribute. A publish can fail because the broker closed the connection, because the client lost an outcome, because the reconnect path rebuilt the producer too late, because an ack was delivered to the wrong waiter, because a timeout fired against stale session state, or because the runtime task died after the protocol had already transitioned.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If all of that behavior is spread across tasks, channels, timers, and sockets, a failure report is hard to compress. If the protocol state machine is explicit, the runtime boundary is narrow, and the same sequence can be replayed under controlled providers, the report can become much smaller: this seed, this trace, this event order, this invariant.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar treats reproducibility as part of the client design. The point is not only to catch more bugs. The point is to make the bugs that do appear cheaper to understand and safer to fix.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>It also changes code review. A reviewer can ask whether a behavior is covered at the right layer. Is this a pure protocol transition? Then the sans-io test should feed bytes and assert events. Is it runtime glue? Then Tokio and Moonpool need equivalent coverage. Is it an observable behavior shared by both engines? Then the differential harness should compare the event streams. Is it broker compatibility? Then an e2e test should touch a real Pulsar broker.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Those questions are more precise than "did we add tests?" They connect the test to the failure model.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What to inspect first</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>For engineers reading Magnetar for the first time, the best entry point is not a single file. It is the relationship between the documents and the code.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> gives the public surface: what the client exposes, which features are implemented, how the Java-client parity matrix is tracked, which PIPs are supported, and how the two engines are positioned. That is the user-facing contract.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">architecture document</a> explains the shape underneath that contract. It shows the crate topology, the dependency direction, the sans-io boundary, the driver loop, the event model, the producer and consumer paths, the runtime engines, TLS sites, schemas, PIP coverage, and the validation strategy. That is the system map.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/tree/main/specs/adr">ADR series</a> explains why the system has this shape. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md">ADR-0004</a> records the sans-io split. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0003-no-channels-rule.md">ADR-0003</a> records the no-channels rule. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0011-clock-injection-sans-io.md">ADR-0011</a> records clock injection. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md">ADR-0010</a> records the Java parity decision. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0019-engine-scope-and-moonpool-parity.md">ADR-0019</a> records how the production Tokio engine and the Moonpool engine relate to the parity goal. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md">ADR-0024</a> records the cross-runtime testing policy.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This matters because Magnetar is intentionally not only a code drop. It is a set of engineering decisions with a public audit trail. If you disagree with the design, the ADRs give you the right surface to discuss. If you want to contribute a feature, the parity matrix and validation policy tell you what "done" means. If you want to evaluate the simulation work, the <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> and the differential harness show how the same protocol core is driven in different worlds.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The first release should therefore be read in two ways. As a Pulsar user, look at the client surface and the parity matrix. As a Rust infrastructure engineer, look at the state-machine boundary and the simulation strategy. The interesting part of Magnetar is that both views are meant to reinforce each other.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What the first public release gives you</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>This first public release is a technical entry point. It is for engineers who want to try Magnetar, read the architecture, inspect the ADRs, compare behavior with existing Pulsar clients, and help shape the Rust-native Pulsar ecosystem.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The high-level client API starts with the usual shape:</p>
<!-- /wp:paragraph -->

<!-- wp:html -->
<div
  style="
    max-width: 780px;
    margin: 1.5rem auto;
    padding: 16px 20px;
    background: #0f172a;
    color: #e5eefc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
  "
>
  <pre
    style="
      margin: 0;
      overflow-x: auto;
      white-space: pre-wrap;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        'Liberation Mono', 'Courier New', monospace;
    "
  ><code>let client = PulsarClient::builder()
    .service_url("pulsar://localhost:6650")
    .build()
    .await?;

let producer = client
    .producer("persistent://public/default/orders")
    .create()
    .await?;</code></pre>
</div>
<!-- /wp:html -->

<!-- wp:paragraph -->
<p>That API is important because the client must be usable. But the release is also an invitation to inspect the lower layers. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> for the feature matrix. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">architecture document</a> for the sans-io design. Read the <a href="https://github.com/CleverCloud/magnetar/tree/main/specs/adr">ADRs</a> for the decisions behind no channels, swappable engines, clock injection, Java parity, Moonpool parity, TLS provider choices, and cross-runtime validation. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> if you are interested in how deterministic simulation can be applied to a real network client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The important point for this article is the direction: Magnetar is public so engineers can evaluate both the client surface and the engineering model behind it.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The inaugural technical entry point is available via <a href="https://github.com/CleverCloud/magnetar/releases#release-v1.0.0">v1.0.0</a>, while the current state of the driver can be tracked in the <a href="https://github.com/CleverCloud/magnetar/releases#release-v1.2.0">v1.2.0</a> release.&nbsp;</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Why this matters beyond Magnetar</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar is an Apache Pulsar client. It is also a concrete example of how we want to build more Rust infrastructure software.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Distributed systems fail through state transitions. Some of those transitions are obvious and easy to test. Many are not. They happen when time advances in an unlucky place, when a retry overlaps with a close path, when a broker drops a connection after accepting part of the session, when a callback is registered just after a notification, or when a reconnect path rebuilds one handle but not another.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>You can try to chase those bugs after they happen. Sometimes that is unavoidable. But the architecture can make the chase easier or harder.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>A client with a pure protocol core, explicit events, injected time, replaceable I/O, deterministic seeds, and cross-runtime comparison gives engineers better tools. It lets them reduce a failure to a trace. It lets them replay that trace. It lets them ask whether a simulated failure corresponds to the production runtime. It lets them add an invariant where a silent state drift used to hide.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is the direction Magnetar takes. Make the protocol explicit. Make the runtime replaceable. Make failures reproducible. Make correctness something the code has to demonstrate continuously.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Thank you to Pierre Zemb for Moonpool and for pushing this deterministic-simulation direction in Rust, and to the contributors and maintainers in the Rust Pulsar ecosystem whose work made the next step possible.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is open source. The code, architecture notes, ADRs, and documentation live at <a href="https://github.com/CleverCloud/magnetar">github.com/CleverCloud/magnetar</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:spacer {"height":"25px"} -->
<div style="height:25px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->

<!-- wp:html -->
<hr style="border: none; height: 1px; background-color: #ccc; margin: 32px 0;">
<!-- /wp:html -->

<!-- wp:spacer {"height":"25px"} -->
<div style="height:25px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->

<!-- wp:heading -->
<h2 class="wp-block-heading">References</h2>
<!-- /wp:heading -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Magnetar</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>Magnetar repository</strong>. Public Rust Apache Pulsar client repository. <a href="https://github.com/CleverCloud/magnetar">https://github.com/CleverCloud/magnetar</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar README</strong>. Public feature surface, Java client parity matrix, supported PIPs, engine coverage, and status. <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">https://github.com/CleverCloud/magnetar/blob/main/README.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar architecture</strong>. Sans-io rationale, crate topology, driver loop, protocol state machine, and tests. <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar documentation index</strong>. Moonpool engine, testing, CLI, observability, logging, PIP features. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/README.md">https://github.com/CleverCloud/magnetar/blob/main/docs/README.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Moonpool engine documentation</strong>. Deterministic-simulation engine, chaos pack, differential harness, provider model. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Testing documentation</strong>. Test categories and validation commands. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md">https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0004</strong>. Sans-io magnetar-proto and swappable I/O engines. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0010</strong>. Full Java-client parity scope. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0024</strong>. Cross-runtime test and coverage policy. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Ecosystem</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>pulsar-rs</strong>. Existing Rust Apache Pulsar client project. <a href="https://github.com/streamnative/pulsar-rs">https://github.com/streamnative/pulsar-rs</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Apache Pulsar</strong>. Distributed messaging and streaming platform. <a href="https://pulsar.apache.org/">https://pulsar.apache.org/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Apache Pulsar Java client</strong>. Reference client surface for many Pulsar users. <a href="https://pulsar.apache.org/docs/">https://pulsar.apache.org/docs/</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Deterministic simulation</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>FoundationDB testing</strong>. Deterministic simulation and fault injection lineage. <a href="https://apple.github.io/foundationdb/testing.html">https://apple.github.io/foundationdb/testing.html</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>TigerBeetle TigerStyle</strong>. Assertion-first engineering style. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md">https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>TigerBeetle VOPR</strong>. Simulation testing approach. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/internals/vopr.md">https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/internals/vopr.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Moonpool repository</strong>. Deterministic simulation for Rust systems, developed by Pierre Zemb. <a href="https://github.com/PierreZ/moonpool">https://github.com/PierreZ/moonpool</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>moonpool-sim</strong>. Simulation engine crate for Moonpool. <a href="https://crates.io/crates/moonpool-sim">https://crates.io/crates/moonpool-sim</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->]]></description>
										<content:encoded><![CDATA[<p><img width="2400" height="1065" src="https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="2026.07.15 Clever Cloud Bannière Blog Magnetar EN" decoding="async" srcset="https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en.png 2400w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-300x133.png 300w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1024x454.png 1024w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-768x341.png 768w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1536x682.png 1536w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-2048x909.png 2048w, https://cdn.clever-cloud.com/uploads/2026/07/2026-07-15-clever-cloud-banniere-blog-magnetar-en-1368x607.png 1368w" sizes="(max-width: 2400px) 100vw, 2400px" /></p><!-- wp:paragraph -->
<p><a href="https://apple.github.io/foundationdb/testing.html">FoundationDB</a> made this idea famous. Instead of relying only on unit tests and real-cluster end-to-end tests, it runs distributed workloads inside a simulated world where time, network faults, process failures, and scheduling decisions can be explored and reproduced from a seed. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md">TigerBeetle</a> pushed a complementary discipline: make invariants part of the code, assert the shape of the state continuously, and turn silent corruption into loud local failures.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we have been applying that direction to Rust infrastructure software. <a href="https://github.com/PierreZ/moonpool">Moonpool</a>, developed by Pierre Zemb, gives Rust systems a deterministic simulation environment where time, networking, tasks, randomness, and storage can be virtualized behind provider traits. <a href="https://github.com/CleverCloud/magnetar">Magnetar</a> is where we apply that approach to a client for <a href="https://pulsar.apache.org/">Apache Pulsar</a>. This is also the approach that we are taking in <a href="https://www.clever.cloud/blog/company/2026/07/01/sozu-2-1-0-udp-load-balancer-programmable-edge/">Sōzu</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is a from-scratch Apache Pulsar client driver in Rust. It is built around a sans-io protocol core, a production Tokio engine, and a Moonpool engine for deterministic simulation. This first public release is meant for engineers who want to try Magnetar, evaluate the architecture, compare behavior with existing Pulsar clients, and help shape a stronger Rust-native Pulsar ecosystem.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The goal is not only to expose a Rust API around Pulsar. The goal is to build a client whose difficult behavior can be inspected, replayed, and made to fail before production gets the chance.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">A Pulsar client is part of the distributed system</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>It is tempting to think about a client library as the easy side of a distributed system. The broker is where replication, storage, ownership, and coordination live. The client only connects, sends messages, receives messages, and acknowledges them.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That view does not survive contact with a real Apache Pulsar client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>A serious Pulsar client has to manage producers, consumers, readers, partitioned topics, multi-topic consumers, pattern subscriptions, transactions, schemas, authentication, proxy routing, broker lookup, cluster failover, reconnect, backoff, batching, chunking, ack grouping, unacked-message tracking, negative acknowledgements, retry-letter and dead-letter flows, observability, and a long list of Pulsar Improvement Proposals.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Many of the hard bugs are not about one command being encoded incorrectly. They are about time and ordering. A broker drops while a publish is in flight. A reconnect happens while a consumer has pending acknowledgements. A token refresh races with a session reset. A proxy lookup points to a new broker while the old connection is still draining. A topic migrates and the client must rebuild enough state to continue without pretending the old session still exists.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That means a Pulsar client is not just a convenience wrapper around a socket. It is part of the distributed system. It owns state that has to remain coherent while the world around it changes.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If that state is hidden inside runtime tasks, channel queues, implicit clocks, and timing accidents, then the client becomes hardest to reason about exactly when precision matters most. Magnetar starts from the opposite assumption: make the protocol state explicit, drive it through narrow boundaries, and keep the I/O outside.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">From the Rust Pulsar ecosystem to Magnetar</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar comes from experience with the Rust Pulsar ecosystem, including maintaining and using <a href="https://github.com/streamnative/pulsar-rs">pulsar-rs</a>. That work matters. It gave Rust users an Apache Pulsar client and created the practical context in which the next generation of driver work could be evaluated.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is not an article-length criticism of what existed before it. It is a continuation of the same ecosystem from a different architectural starting point. After spending time with real Pulsar usage, the shape of the next step became clearer: a Rust Pulsar driver should make the protocol/runtime boundary sharper, make difficult behavior reproducible, track parity explicitly, and make testability a first-class design constraint.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar does not begin with the public builder API. It begins with the protocol.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The user-facing API matters, and the first release already exposes a broad surface. But for a distributed client, the deeper question is what happens underneath that API when the broker moves, the connection drops, the clock advances, a timeout fires, a subscription is rebuilt, or the same trace is replayed under a different runtime.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">The sans-io core</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The heart of Magnetar is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-proto">magnetar-proto</a>. It is a synchronous protocol state machine. It has no sockets. It does not depend on Tokio. It does not spawn tasks. It does not use async. It does not read the host clock on the protocol hot path.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Its shape follows the same broad idea that made <a href="https://github.com/quinn-rs/quinn/tree/main/quinn-proto">quinn-proto</a> influential in the Rust networking world: feed bytes in, poll bytes out, poll semantic events, and ask the state machine when its next timer expires.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Conceptually, the interface looks like this:</p>
<!-- /wp:paragraph -->

<!-- wp:html -->
<div
  style="
    max-width: 780px;
    margin: 1.5rem auto;
    padding: 16px 20px;
    background: #0f172a;
    color: #e5eefc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
  "
>
  <pre
    style="
      margin: 0;
      overflow-x: auto;
      white-space: pre-wrap;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        'Liberation Mono', 'Courier New', monospace;
    "
  ><code>&gt; connection.handle_bytes(now, bytes);

connection.poll_transmit(&amp;mut out);
connection.poll_event();
connection.poll_timeout();</code></pre>
</div>
<!-- /wp:html -->

<!-- wp:paragraph -->
<p>That small shape is a large architectural choice.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>handle_bytes lets an engine feed wire bytes into the state machine. poll_transmit drains outbound frames. poll_event yields semantic events that the runtime must react to, such as authentication challenges, lookup outcomes, checksum mismatches, reconnect signals, or protocol-level transitions. poll_timeout lets the runtime ask when to wake the state machine again.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The state machine does not decide where bytes come from. It does not know whether the network is a real TCP stream, a TLS stream, a byte pipe inside a simulator, or a scripted broker in a differential harness. It does not decide what "now" means. The engine passes time in.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The public traits in magnetar-proto follow the same rule. They are not runtime services hidden behind async callbacks. They are small protocol contracts at the points where the state machine needs a decision or a transformation: <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/auth.rs">AuthProvider</a> produces authentication bytes, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/schema/mod.rs">Schema</a> defines encoding, decoding, schema data, and broker-resolved schema hooks, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/crypto.rs">MessageEncryptor and MessageDecryptor</a> describe payload crypto over bytes and message metadata, <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/service_url.rs">ServiceUrlProvider</a> exposes the current service URL for failover, and <a href="https://github.com/CleverCloud/magnetar/blob/main/crates/magnetar-proto/src/health_probe.rs">HealthProbe</a> uses a poll-style contract instead of binding the protocol crate to an async runtime. The pattern is deliberate: the protocol core can ask for facts, bytes, or readiness, while the I/O, caching, refresh logic, network probes, and scheduler stay outside.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This separation is not just a clean layering exercise. It is what makes the protocol testable without a broker, without a socket, and without an async runtime. A protocol bug can be reduced to a fixture: feed these bytes at this instant, poll these outputs, assert this event stream, and replay the same sequence again.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>For an Apache Pulsar client, that matters because the wire protocol is not only a happy path. It includes producer creation, consumer subscription, acks, nacks, transactions, broker errors, redirects, authentication challenges, topic migration, replicated-subscription markers, schema metadata, batching, chunking, and close paths. Each of these has state. Each state transition is easier to reason about when it is not mixed with socket reads, task scheduling, and runtime-specific wakeups.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">No channels as an architectural constraint</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar also makes an unusual Rust async choice: channel primitives are banned from the workspace.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The straightforward architecture for a network client is often producer future to channel, channel to driver task, driver task to channel, channel to consumer future. That can work, but it spreads state across queues and tasks. Backpressure becomes implicit. Close semantics become library-specific. Dropped futures can leave messages stranded in places that are hard to inspect. The debugging question becomes "where did this message go?"</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar uses a different pattern. State lives inside the protocol state machine and the runtime-owned shared connection. User-facing futures register wakers in slabs keyed by operation identifiers. The driver owns the I/O loop, feeds bytes into the state machine, drains outbound frames, and wakes the matching futures as outcomes arrive.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is not an aesthetic ban on channels. It is a way to keep ownership of state explicit. When the driver rebuilds producers after a reconnect, when a consumer waits for a message, when an ack outcome is delivered, or when a pending operation fails because a session is gone, the relevant state is in the state machine and can be inspected there.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That design has trade-offs. It puts more pressure on the correctness of the state machine. It requires careful lock ordering. It requires reviewers to understand waker registration and wakeup paths. But it also makes the behavior much easier to simulate, replay, and compare across runtimes.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Two engines, one state machine</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar ships two engines that drive the same protocol core.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The default engine is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-runtime-tokio">magnetar-runtime-tokio</a>. It is the production execution path: TCP, TLS through tokio-rustls, driver tasks, real time, real sockets, and the public PulsarClient surface most users will reach first.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The second engine is <a href="https://github.com/CleverCloud/magnetar/tree/main/crates/magnetar-runtime-moonpool">magnetar-runtime-moonpool</a>. It drives the same magnetar-proto::Connection state machine through Moonpool providers. Instead of baking in the runtime, Moonpool exposes provider traits for networking, time, task spawning, randomness, and storage. Under a production-style provider bundle, the engine can run against real I/O. Under simulation providers, those same categories can be virtualized.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is where deterministic simulation becomes practical. The client can be driven in a world where time advances under control, network delivery can be reordered or interrupted, tasks run under a deterministic scheduler, randomness is seeded, and failures can be replayed from the same seed.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool is not a mock. A mock usually replaces a component with simplified behavior. That is useful for many unit tests, but it is not the same thing as exercising a real client through hard interleavings.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool is also not a normal end-to-end test. An e2e test runs the real system, which is essential, but it usually runs with real time, real networking, and failures that are difficult to reproduce once the timing has moved on.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Moonpool sits in a different space. It keeps the client code close to the real execution path while virtualizing the providers that make distributed behavior hard to reproduce. The point is not to avoid e2e tests. The point is to add a regime where failures are not anecdotes. They become seeds.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar's Moonpool engine uses the same protocol state machine as the Tokio engine. The TLS path is also driven in a way that preserves the simulation boundary: instead of relying on tokio-rustls, the Moonpool engine drives rustls::ClientConnection over the byte pipe directly. That keeps TLS handshakes under the same deterministic control as the rest of the simulated network.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Differential testing: making the engines agree</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Two engines are useful only if they do not silently become two different clients.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar therefore includes a differential harness. It runs a trace, such as connect, open producer, send, subscribe, receive, ack, seek, and close, against both the Tokio and Moonpool engines, then compares the user-visible event streams.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This matters because the Moonpool engine is used to find bugs that are difficult to expose with real time and real sockets. For that to be meaningful, the simulated engine must remain observationally aligned with the production engine at the user boundary.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If Tokio and Moonpool drift, the simulator becomes less trustworthy. If the differential harness keeps them aligned, then a seed failure in the simulated world is much more likely to point at a real property of the client, not a separate test-only implementation.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is also why Magnetar's validation policy is strict about cross-runtime coverage. Behavioral changes are expected to exercise the sans-io layer, the Tokio runtime, the Moonpool runtime, differential equivalence, and the e2e surface when applicable. That is more work than adding one unit test. It is also the cost of making deterministic simulation a real engineering tool rather than a side experiment.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Java parity as a credibility contract</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Simulation is not a substitute for feature breadth. It is what makes feature breadth less fragile.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Apache Pulsar has a mature <a href="https://pulsar.apache.org/docs/">Java client</a>, and for many users that client defines what "a Pulsar client" means. Basic produce and consume are not enough. A credible client must cover the behaviors applications rely on: batching, compression, transactions, schemas, partitioned topics, multi-topic and pattern consumers, retries, dead-letter flows, authentication providers, proxy support, failover, admin operations, and the PIPs that shape modern Pulsar usage.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar tracks Java-client parity as a public contract. The <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> carries the parity matrix and the engine-by-engine status. The article does not need to reproduce that matrix, but the matrix itself is important. It gives users a way to evaluate the project as a Pulsar client, not as a narrow experiment around one happy path.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This is the reason Magnetar's first public release is broader than a minimal demo. It includes the protocol foundation, the public facade, runtime engines, admin support, authentication providers, message crypto, CLI work, observability hooks, and a growing list of PIP surfaces.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The exact reason for tracking parity is simple: users do not choose a client library only because its internal architecture is elegant. They choose it because it can represent the system they actually run. Architecture makes that surface maintainable. Parity makes it useful.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Beyond produce and consume</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The phrase "Pulsar client" can hide a lot of surface area. From the outside, the first examples usually look small: build a client, create a producer, send a payload, subscribe with a consumer, receive a message, acknowledge it. Those examples are useful because they show the entry point. They are not enough to evaluate the client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Real Pulsar applications depend on behaviors that only appear after the first demo works. A producer may need batching, compression, chunking, access modes, sequence ids, send timeouts, per-message properties, transactions, interceptors, and latency statistics. A consumer may need batch receive, cumulative acknowledgements, batch-index acknowledgements, nack backoff, ack timeout handling, retry topics, dead-letter topics, seek, pause/resume, subscription modes, and per-partition behavior. Applications with strict schemas need Avro, JSON, Protobuf, Protobuf-native, KeyValue, primitive schemas, and broker-side schema lookup semantics. Deployments with security requirements need token auth, mTLS, OAuth2, SASL, Kerberos/GSSAPI, Athenz, TLS provider choices, and a way to reason about crypto behavior without making every build drag every provider.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Those features are not independent checkboxes. They interact. Batching interacts with compression and send timeouts. Chunking interacts with sequence ids and redelivery. Transactions interact with acknowledgements. Reconnect interacts with producers, consumers, lookups, proxy routing, and failover. Observability has to describe the behavior without leaking secrets or flooding operators under churn.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar's feature work and architecture work are tied together. The more complete the surface becomes, the more important it is that the protocol state is explicit and that the runtime boundary is narrow. A broad client built on accidental state becomes harder to maintain as it becomes more useful. A broad client built on replayable state gives maintainers a better chance to keep feature growth from turning into hidden behavior.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Validation as architecture</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar's test strategy is intentionally layered because each layer catches a different class of bug.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The sans-io layer lets protocol behavior be tested without sockets or async tasks. The <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md">project testing documentation</a> currently records more than 270 unit tests in magnetar-proto. Those tests exercise the state machine directly: bytes in, events out, transmit buffers out, state transitions checked.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Runtime integration tests exercise the glue that pure protocol tests cannot cover. The Tokio engine and Moonpool engine each have their own integration surfaces, and the project enforces runtime parity so one engine does not quietly fall behind the other.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The deterministic chaos pack targets the failure schedules that motivated the architecture in the first place: reconnect, failover, virtual-clock timers, TLS handshake ordering, in-flight publishes, broker migration, and adversarial network behavior. The <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> describes a daily Moonpool seed sweep with 128 freshly rolled random seeds in parallel. The number is less important than what it represents: the client is being driven through schedules that a human would not write by hand.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Differential equivalence tests compare the two runtime worlds. They ask a direct question: if the same trace is run through Tokio and Moonpool, does the user see the same behavior?</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>End-to-end tests still matter. They keep Magnetar honest against a real Apache Pulsar broker. Simulation can make failures reproducible, but it does not replace compatibility with the system users actually deploy.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Taken together, these layers are not ceremony. They are part of the architecture. The point is not to collect large test numbers. The point is to put validation pressure exactly where distributed clients fail: protocol state, runtime boundaries, reconnect logic, timing, equivalence, and real broker behavior.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What reproducibility changes in practice</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The practical value of deterministic simulation is not that it makes tests more sophisticated. It changes the debugging loop.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>When a traditional end-to-end test fails because of timing, the first question is often whether the failure is reproducible at all. If it is not, engineers start adding sleeps, logs, larger timeouts, or retry loops. Some of those changes are useful. Many of them only move the failure somewhere else. The failure remains a story: "we saw it once in CI".</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>With a deterministic simulation, the failure should become an artifact. The artifact is a seed, a trace, and a state transition that can be replayed. The question changes from "can we make it happen again?" to "what invariant did this schedule violate?"</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That difference matters for a client library. Client bugs often sit at the boundary between user code and the broker. They are easy to misattribute. A publish can fail because the broker closed the connection, because the client lost an outcome, because the reconnect path rebuilt the producer too late, because an ack was delivered to the wrong waiter, because a timeout fired against stale session state, or because the runtime task died after the protocol had already transitioned.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>If all of that behavior is spread across tasks, channels, timers, and sockets, a failure report is hard to compress. If the protocol state machine is explicit, the runtime boundary is narrow, and the same sequence can be replayed under controlled providers, the report can become much smaller: this seed, this trace, this event order, this invariant.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is why Magnetar treats reproducibility as part of the client design. The point is not only to catch more bugs. The point is to make the bugs that do appear cheaper to understand and safer to fix.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>It also changes code review. A reviewer can ask whether a behavior is covered at the right layer. Is this a pure protocol transition? Then the sans-io test should feed bytes and assert events. Is it runtime glue? Then Tokio and Moonpool need equivalent coverage. Is it an observable behavior shared by both engines? Then the differential harness should compare the event streams. Is it broker compatibility? Then an e2e test should touch a real Pulsar broker.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Those questions are more precise than "did we add tests?" They connect the test to the failure model.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What to inspect first</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>For engineers reading Magnetar for the first time, the best entry point is not a single file. It is the relationship between the documents and the code.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> gives the public surface: what the client exposes, which features are implemented, how the Java-client parity matrix is tracked, which PIPs are supported, and how the two engines are positioned. That is the user-facing contract.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">architecture document</a> explains the shape underneath that contract. It shows the crate topology, the dependency direction, the sans-io boundary, the driver loop, the event model, the producer and consumer paths, the runtime engines, TLS sites, schemas, PIP coverage, and the validation strategy. That is the system map.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The <a href="https://github.com/CleverCloud/magnetar/tree/main/specs/adr">ADR series</a> explains why the system has this shape. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md">ADR-0004</a> records the sans-io split. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0003-no-channels-rule.md">ADR-0003</a> records the no-channels rule. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0011-clock-injection-sans-io.md">ADR-0011</a> records clock injection. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md">ADR-0010</a> records the Java parity decision. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0019-engine-scope-and-moonpool-parity.md">ADR-0019</a> records how the production Tokio engine and the Moonpool engine relate to the parity goal. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md">ADR-0024</a> records the cross-runtime testing policy.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This matters because Magnetar is intentionally not only a code drop. It is a set of engineering decisions with a public audit trail. If you disagree with the design, the ADRs give you the right surface to discuss. If you want to contribute a feature, the parity matrix and validation policy tell you what "done" means. If you want to evaluate the simulation work, the <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> and the differential harness show how the same protocol core is driven in different worlds.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The first release should therefore be read in two ways. As a Pulsar user, look at the client surface and the parity matrix. As a Rust infrastructure engineer, look at the state-machine boundary and the simulation strategy. The interesting part of Magnetar is that both views are meant to reinforce each other.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">What the first public release gives you</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>This first public release is a technical entry point. It is for engineers who want to try Magnetar, read the architecture, inspect the ADRs, compare behavior with existing Pulsar clients, and help shape the Rust-native Pulsar ecosystem.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The high-level client API starts with the usual shape:</p>
<!-- /wp:paragraph -->

<!-- wp:html -->
<div
  style="
    max-width: 780px;
    margin: 1.5rem auto;
    padding: 16px 20px;
    background: #0f172a;
    color: #e5eefc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
      Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
  "
>
  <pre
    style="
      margin: 0;
      overflow-x: auto;
      white-space: pre-wrap;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        'Liberation Mono', 'Courier New', monospace;
    "
  ><code>let client = PulsarClient::builder()
    .service_url("pulsar://localhost:6650")
    .build()
    .await?;

let producer = client
    .producer("persistent://public/default/orders")
    .create()
    .await?;</code></pre>
</div>
<!-- /wp:html -->

<!-- wp:paragraph -->
<p>That API is important because the client must be usable. But the release is also an invitation to inspect the lower layers. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">README</a> for the feature matrix. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">architecture document</a> for the sans-io design. Read the <a href="https://github.com/CleverCloud/magnetar/tree/main/specs/adr">ADRs</a> for the decisions behind no channels, swappable engines, clock injection, Java parity, Moonpool parity, TLS provider choices, and cross-runtime validation. Read the <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">Moonpool engine documentation</a> if you are interested in how deterministic simulation can be applied to a real network client.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The important point for this article is the direction: Magnetar is public so engineers can evaluate both the client surface and the engineering model behind it.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The inaugural technical entry point is available via <a href="https://github.com/CleverCloud/magnetar/releases#release-v1.0.0">v1.0.0</a>, while the current state of the driver can be tracked in the <a href="https://github.com/CleverCloud/magnetar/releases#release-v1.2.0">v1.2.0</a> release.&nbsp;</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Why this matters beyond Magnetar</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Magnetar is an Apache Pulsar client. It is also a concrete example of how we want to build more Rust infrastructure software.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Distributed systems fail through state transitions. Some of those transitions are obvious and easy to test. Many are not. They happen when time advances in an unlucky place, when a retry overlaps with a close path, when a broker drops a connection after accepting part of the session, when a callback is registered just after a notification, or when a reconnect path rebuilds one handle but not another.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>You can try to chase those bugs after they happen. Sometimes that is unavoidable. But the architecture can make the chase easier or harder.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>A client with a pure protocol core, explicit events, injected time, replaceable I/O, deterministic seeds, and cross-runtime comparison gives engineers better tools. It lets them reduce a failure to a trace. It lets them replay that trace. It lets them ask whether a simulated failure corresponds to the production runtime. It lets them add an invariant where a silent state drift used to hide.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>That is the direction Magnetar takes. Make the protocol explicit. Make the runtime replaceable. Make failures reproducible. Make correctness something the code has to demonstrate continuously.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Thank you to Pierre Zemb for Moonpool and for pushing this deterministic-simulation direction in Rust, and to the contributors and maintainers in the Rust Pulsar ecosystem whose work made the next step possible.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Magnetar is open source. The code, architecture notes, ADRs, and documentation live at <a href="https://github.com/CleverCloud/magnetar">github.com/CleverCloud/magnetar</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:spacer {"height":"25px"} -->
<div style="height:25px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->

<!-- wp:html -->
<hr style="border: none; height: 1px; background-color: #ccc; margin: 32px 0;">
<!-- /wp:html -->

<!-- wp:spacer {"height":"25px"} -->
<div style="height:25px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->

<!-- wp:heading -->
<h2 class="wp-block-heading">References</h2>
<!-- /wp:heading -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Magnetar</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>Magnetar repository</strong>. Public Rust Apache Pulsar client repository. <a href="https://github.com/CleverCloud/magnetar">https://github.com/CleverCloud/magnetar</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar README</strong>. Public feature surface, Java client parity matrix, supported PIPs, engine coverage, and status. <a href="https://github.com/CleverCloud/magnetar/blob/main/README.md">https://github.com/CleverCloud/magnetar/blob/main/README.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar architecture</strong>. Sans-io rationale, crate topology, driver loop, protocol state machine, and tests. <a href="https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md">https://github.com/CleverCloud/magnetar/blob/main/ARCHITECTURE.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Magnetar documentation index</strong>. Moonpool engine, testing, CLI, observability, logging, PIP features. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/README.md">https://github.com/CleverCloud/magnetar/blob/main/docs/README.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Moonpool engine documentation</strong>. Deterministic-simulation engine, chaos pack, differential harness, provider model. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md">https://github.com/CleverCloud/magnetar/blob/main/docs/moonpool-engine.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Testing documentation</strong>. Test categories and validation commands. <a href="https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md">https://github.com/CleverCloud/magnetar/blob/main/docs/testing.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0004</strong>. Sans-io magnetar-proto and swappable I/O engines. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0004-sans-io-protocol-core.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0010</strong>. Full Java-client parity scope. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0010-v0-1-full-java-parity.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>ADR-0024</strong>. Cross-runtime test and coverage policy. <a href="https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md">https://github.com/CleverCloud/magnetar/blob/main/specs/adr/0024-cross-runtime-test-and-coverage-policy.md</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Ecosystem</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>pulsar-rs</strong>. Existing Rust Apache Pulsar client project. <a href="https://github.com/streamnative/pulsar-rs">https://github.com/streamnative/pulsar-rs</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Apache Pulsar</strong>. Distributed messaging and streaming platform. <a href="https://pulsar.apache.org/">https://pulsar.apache.org/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Apache Pulsar Java client</strong>. Reference client surface for many Pulsar users. <a href="https://pulsar.apache.org/docs/">https://pulsar.apache.org/docs/</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Deterministic simulation</h3>
<!-- /wp:heading -->

<!-- wp:list -->
<ul class="wp-block-list"><!-- wp:list-item -->
<li><strong>FoundationDB testing</strong>. Deterministic simulation and fault injection lineage. <a href="https://apple.github.io/foundationdb/testing.html">https://apple.github.io/foundationdb/testing.html</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>TigerBeetle TigerStyle</strong>. Assertion-first engineering style. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md">https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>TigerBeetle VOPR</strong>. Simulation testing approach. <a href="https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/internals/vopr.md">https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/internals/vopr.md</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>Moonpool repository</strong>. Deterministic simulation for Rust systems, developed by Pierre Zemb. <a href="https://github.com/PierreZ/moonpool">https://github.com/PierreZ/moonpool</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><strong>moonpool-sim</strong>. Simulation engine crate for Moonpool. <a href="https://crates.io/crates/moonpool-sim">https://crates.io/crates/moonpool-sim</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Quand le Mistral souffle plus fort, la VR ouverte déroute l&#8217;IA en maintenance</title>
		<link>https://www.clever.cloud/podcast/quand-le-mistral-souffle-plus-fort-la-vr-ouverte-deroute-lia-en-maintenance/</link>
					<comments>https://www.clever.cloud/podcast/quand-le-mistral-souffle-plus-fort-la-vr-ouverte-deroute-lia-en-maintenance/#respond</comments>
		
		<dc:creator><![CDATA[Horacio Gonzalez]]></dc:creator>
		<pubDate>Fri, 26 Sep 2025 06:00:00 +0000</pubDate>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Athropic]]></category>
		<category><![CDATA[MistralAI]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[RGPD]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[VR]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=20057</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2025/09/142.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="142" decoding="async" srcset="https://cdn.clever-cloud.com/uploads/2025/09/142.jpg 1920w, https://cdn.clever-cloud.com/uploads/2025/09/142-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2025/09/142-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2025/09/142-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2025/09/142-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2025/09/142-1368x770.jpg 1368w" sizes="(max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/E7qBQRD9WBQ">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par : Horacio GONZALEZ<br>Avec la participation de : <br>- Matthieu VINCENT<br>- Yannick GUERN<br>- Yohann VINEZ</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Episode enregistré le 15 septembre 2025</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 - Présentation des invités<br><br>00:03:16 - Communautés Tech dans une ESN comme Sopra<br><br>00:04:46 - Yannick et les casques VR - Metaquest<br>OpenXR - <a href="https://www.khronos.org/OpenXR">https://www.khronos.org/OpenXR</a> <br><a href="https://learn.microsoft.com/fr-fr/windows/mixed-reality/develop/native/openxr">https://learn.microsoft.com/fr-fr/windows/mixed-reality/develop/native/openxr</a>  <br>Utiliser la VR dans Godot - <a href="https://docs.godotengine.org/fr/4.x/tutorials/xr/setting_up_xr.html">https://docs.godotengine.org/fr/4.x/tutorials/xr/setting_up_xr.html</a> <br><br>00:14:33 - Vous ne devriez pas acheter vos AirPods Pro 3 en Europe<br><a href="https://www.numerama.com/tech/2071103-vous-ne-devriez-pas-acheter-vos-airpods-pro-3-en-europe.html">https://www.numerama.com/tech/2071103-vous-ne-devriez-pas-acheter-vos-airpods-pro-3-en-europe.html</a> <br><br>00:20:06  - Utilisation malencontreuse d’IA dans la maintenance des bibliothèques Rust <br><a href="https://x.com/davidtolnay/status/1883906113428676938">https://x.com/davidtolnay/status/1883906113428676938</a><br><br>00:35:06 - Investissement MistralAI par ASML <br><a href="https://x.com/AlainGoudey/status/1964939896243511656">https://x.com/AlainGoudey/status/1964939896243511656</a><br><a href="https://www.clubic.com/actualite-579064-vous-pensiez-le-rgb-surfait-ces-barrettes-de-ram-arrivent-avec-un-ecran-oled.html">https://www.clubic.com/actualite-579064-vous-pensiez-le-rgb-surfait-ces-barrettes-de-ram-arrivent-avec-un-ecran-oled.html</a> <br><a href="https://www.techradar.com/ai-platforms-assistants/chatgpt/the-models-are-really-devious-sam-altmans-hardware-chief-says-openai-wants-kill-switches-built-into-hardware-in-case-things-go-wrong">https://www.techradar.com/ai-platforms-assistants/chatgpt/the-models-are-really-devious-sam-altmans-hardware-chief-says-openai-wants-kill-switches-built-into-hardware-in-case-things-go-wrong</a> <br><br>00:42:00 - Les modèles d'Anthropic s'invitent dans Microsoft 365<br> <a href="https://www.lemondeinformatique.fr/actualites/lire-les-modeles-d-anthropic-s-invitent-dans-microsoft-365-97856.html">https://www.lemondeinformatique.fr/actualites/lire-les-modeles-d-anthropic-s-invitent-dans-microsoft-365-97856.html</a><br><br>00:44:16 - Les outils inutiles mais marrants<br><a href="https://github.com/mmulet/term.everything">https://github.com/mmulet/term.everything</a> : une GUI dans le terminal<br><a href="https://github.com/leaningtech/webvm/">https://github.com/leaningtech/webvm/</a> : une VM linux dans ton navigateur (utile pour quand on fait des slides “as-code”)<br><a href="https://github.com/sanaysarthak/git-laugh-track">https://github.com/sanaysarthak/git-laugh-track</a> : des rires qd tu commites#142 -  Un titre à trouver<br><br>00:48:22 - Musique de fin – OST Clair Obscur: Expedition 33<br><a href="https://www.youtube.com/watch?v=zmvsw2ILX5k">https://www.youtube.com/watch?v=zmvsw2ILX5k</a><br></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2025/09/142.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="142" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2025/09/142.jpg 1920w, https://cdn.clever-cloud.com/uploads/2025/09/142-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2025/09/142-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2025/09/142-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2025/09/142-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2025/09/142-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/E7qBQRD9WBQ">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par : Horacio GONZALEZ<br>Avec la participation de : <br>- Matthieu VINCENT<br>- Yannick GUERN<br>- Yohann VINEZ</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Episode enregistré le 15 septembre 2025</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 - Présentation des invités<br><br>00:03:16 - Communautés Tech dans une ESN comme Sopra<br><br>00:04:46 - Yannick et les casques VR - Metaquest<br>OpenXR - <a href="https://www.khronos.org/OpenXR">https://www.khronos.org/OpenXR</a> <br><a href="https://learn.microsoft.com/fr-fr/windows/mixed-reality/develop/native/openxr">https://learn.microsoft.com/fr-fr/windows/mixed-reality/develop/native/openxr</a>  <br>Utiliser la VR dans Godot - <a href="https://docs.godotengine.org/fr/4.x/tutorials/xr/setting_up_xr.html">https://docs.godotengine.org/fr/4.x/tutorials/xr/setting_up_xr.html</a> <br><br>00:14:33 - Vous ne devriez pas acheter vos AirPods Pro 3 en Europe<br><a href="https://www.numerama.com/tech/2071103-vous-ne-devriez-pas-acheter-vos-airpods-pro-3-en-europe.html">https://www.numerama.com/tech/2071103-vous-ne-devriez-pas-acheter-vos-airpods-pro-3-en-europe.html</a> <br><br>00:20:06  - Utilisation malencontreuse d’IA dans la maintenance des bibliothèques Rust <br><a href="https://x.com/davidtolnay/status/1883906113428676938">https://x.com/davidtolnay/status/1883906113428676938</a><br><br>00:35:06 - Investissement MistralAI par ASML <br><a href="https://x.com/AlainGoudey/status/1964939896243511656">https://x.com/AlainGoudey/status/1964939896243511656</a><br><a href="https://www.clubic.com/actualite-579064-vous-pensiez-le-rgb-surfait-ces-barrettes-de-ram-arrivent-avec-un-ecran-oled.html">https://www.clubic.com/actualite-579064-vous-pensiez-le-rgb-surfait-ces-barrettes-de-ram-arrivent-avec-un-ecran-oled.html</a> <br><a href="https://www.techradar.com/ai-platforms-assistants/chatgpt/the-models-are-really-devious-sam-altmans-hardware-chief-says-openai-wants-kill-switches-built-into-hardware-in-case-things-go-wrong">https://www.techradar.com/ai-platforms-assistants/chatgpt/the-models-are-really-devious-sam-altmans-hardware-chief-says-openai-wants-kill-switches-built-into-hardware-in-case-things-go-wrong</a> <br><br>00:42:00 - Les modèles d'Anthropic s'invitent dans Microsoft 365<br> <a href="https://www.lemondeinformatique.fr/actualites/lire-les-modeles-d-anthropic-s-invitent-dans-microsoft-365-97856.html">https://www.lemondeinformatique.fr/actualites/lire-les-modeles-d-anthropic-s-invitent-dans-microsoft-365-97856.html</a><br><br>00:44:16 - Les outils inutiles mais marrants<br><a href="https://github.com/mmulet/term.everything">https://github.com/mmulet/term.everything</a> : une GUI dans le terminal<br><a href="https://github.com/leaningtech/webvm/">https://github.com/leaningtech/webvm/</a> : une VM linux dans ton navigateur (utile pour quand on fait des slides “as-code”)<br><a href="https://github.com/sanaysarthak/git-laugh-track">https://github.com/sanaysarthak/git-laugh-track</a> : des rires qd tu commites#142 -  Un titre à trouver<br><br>00:48:22 - Musique de fin – OST Clair Obscur: Expedition 33<br><a href="https://www.youtube.com/watch?v=zmvsw2ILX5k">https://www.youtube.com/watch?v=zmvsw2ILX5k</a><br></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/quand-le-mistral-souffle-plus-fort-la-vr-ouverte-deroute-lia-en-maintenance/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_142.mp3" length="71848851" type="audio/mpeg" />

			</item>
		<item>
		<title>Les recettes du kernel</title>
		<link>https://www.clever.cloud/podcast/les-recettes-du-kernel/</link>
					<comments>https://www.clever.cloud/podcast/les-recettes-du-kernel/#respond</comments>
		
		<dc:creator><![CDATA[Julien Durillon]]></dc:creator>
		<pubDate>Fri, 11 Oct 2024 07:55:55 +0000</pubDate>
				<category><![CDATA[6.11]]></category>
		<category><![CDATA[Kernel Recipies]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[RISCV]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=14235</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/10/118.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="118" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/10/118.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/10/118-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/10/118-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/10/118-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/10/118-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/10/118-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/Ab53m_JXSng">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Julien Durillon - @juuduu<br>avec la participation de : </p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Arnaud Lefebvre - @blackyoup</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Agathe - @agathe</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Adrien Mahieux - @saruspete</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 25 septembre 2024</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:01:46 : Mais c’est quoi Kernel Recipies  ?<br><a href="https://kernel-recipes.org" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:06:27 : Nos confs préférées</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Structures des données pour être efficace dans le cache line : <a href="https://kernel-recipes.org/en/2024/schedule/assisted-reorganization-of-data-structures/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/assisted-reorganization-of-data-structures/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/how-cern-serves-1eb-of-data-via-fuse/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/how-cern-serves-1eb-of-data-via-fuse/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Comment l’association Linux est devenue un CNA : <a href="https://kernel-recipes.org/en/2024/kernel-and-security/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/kernel-and-security/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/case-study-concurrent-counting/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/case-study-concurrent-counting/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/virtme-ng/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/virtme-ng/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Lire /proc/meminfo <a href="https://kernel-recipes.org/en/2024/schedule/all-your-memory-are-belong-to-whom/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/all-your-memory-are-belong-to-whom/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/preempt_rt-over-the-years/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/preempt_rt-over-the-years/</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:29:55 : Présentation sched_ext<br>Écrire un scheduler en bpf pour tester des nouveautés<br>Ça arrivera dans la 6.12</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><strong>6.11<br></strong>00:35:22 : Plein de nouveautés RISC-V<br>Support de rust en 6.10<br>Mem hotplug 6.11<br>00:42:50 : Agner table (un pdf)<br>00:42:31  : io_uring: bind/listen sur un port<br>00:44:08 : Sloppy logic analyzer<br>Un analyzer logique du pauvre, un peu pourri, mais c’est là<br>Ça permet de debug un système à distance, avec du GPIO</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:40 : NULL blk, un driver block en rust pour amorcer la pompe<br>Ça permet de tester ses applis qui écrivent en block<br>00:54:00 : Version min 1.78 et on peut compiler avec rust 1.80<br>00:56:00 : Musique de fin : Katy Perry -  I kissed a girl - <a href="https://www.youtube.com/watch?v=tAp9BKosZXs" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=tAp9BKosZXs</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/10/118.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="118" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/10/118.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/10/118-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/10/118-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/10/118-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/10/118-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/10/118-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/Ab53m_JXSng">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Julien Durillon - @juuduu<br>avec la participation de : </p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Arnaud Lefebvre - @blackyoup</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Agathe - @agathe</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Adrien Mahieux - @saruspete</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 25 septembre 2024</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:01:46 : Mais c’est quoi Kernel Recipies  ?<br><a href="https://kernel-recipes.org" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:06:27 : Nos confs préférées</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Structures des données pour être efficace dans le cache line : <a href="https://kernel-recipes.org/en/2024/schedule/assisted-reorganization-of-data-structures/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/assisted-reorganization-of-data-structures/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/how-cern-serves-1eb-of-data-via-fuse/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/how-cern-serves-1eb-of-data-via-fuse/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Comment l’association Linux est devenue un CNA : <a href="https://kernel-recipes.org/en/2024/kernel-and-security/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/kernel-and-security/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/case-study-concurrent-counting/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/case-study-concurrent-counting/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/virtme-ng/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/virtme-ng/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Lire /proc/meminfo <a href="https://kernel-recipes.org/en/2024/schedule/all-your-memory-are-belong-to-whom/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/all-your-memory-are-belong-to-whom/</a></li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://kernel-recipes.org/en/2024/schedule/preempt_rt-over-the-years/" target="_blank" rel="noreferrer noopener">https://kernel-recipes.org/en/2024/schedule/preempt_rt-over-the-years/</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:29:55 : Présentation sched_ext<br>Écrire un scheduler en bpf pour tester des nouveautés<br>Ça arrivera dans la 6.12</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><strong>6.11<br></strong>00:35:22 : Plein de nouveautés RISC-V<br>Support de rust en 6.10<br>Mem hotplug 6.11<br>00:42:50 : Agner table (un pdf)<br>00:42:31  : io_uring: bind/listen sur un port<br>00:44:08 : Sloppy logic analyzer<br>Un analyzer logique du pauvre, un peu pourri, mais c’est là<br>Ça permet de debug un système à distance, avec du GPIO</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:40 : NULL blk, un driver block en rust pour amorcer la pompe<br>Ça permet de tester ses applis qui écrivent en block<br>00:54:00 : Version min 1.78 et on peut compiler avec rust 1.80<br>00:56:00 : Musique de fin : Katy Perry -  I kissed a girl - <a href="https://www.youtube.com/watch?v=tAp9BKosZXs" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=tAp9BKosZXs</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/les-recettes-du-kernel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_118.mp3" length="83253517" type="audio/mpeg" />

			</item>
		<item>
		<title>Aux origines du bug, la domotique pop et s’ouvre au proton</title>
		<link>https://www.clever.cloud/podcast/aux-origines-du-bug-la-domotique-pop-et-souvre-au-proton/</link>
					<comments>https://www.clever.cloud/podcast/aux-origines-du-bug-la-domotique-pop-et-souvre-au-proton/#respond</comments>
		
		<dc:creator><![CDATA[Horacio Gonzalez]]></dc:creator>
		<pubDate>Fri, 23 Aug 2024 07:01:10 +0000</pubDate>
				<category><![CDATA[home assistant]]></category>
		<category><![CDATA[Proton]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=13753</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/08/111.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="111" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/08/111.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/08/111-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/08/111-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/08/111-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/08/111-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/08/111-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/Ve7NoQ7MG8M" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Horacio Gonzalez - @LostInBrittany <br>avec la participation de : </p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Sylvain Wallez - @bluxte </li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Emmanuel Bosquet - @EmmanuelBosquet </li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Erwan Rougeux - @ERougeux </li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 19 août 2024</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋 Venez discuter avec nous sur @clever_cloudFR pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️ Pour découvrir ou réécouter d’anciens épisodes&nbsp;c’est par ici&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage &amp; Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 : Introduction et présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:03:00 : Debug machine à laver<br><a href="https://x.com/bluxte/status/1824857486811103239" target="_blank" rel="noreferrer noopener">https://x.com/bluxte/status/1824857486811103239<br></a><a href="https://www.ifixit.com/ - IFixIt" target="_blank" rel="noreferrer noopener">https://www.ifixit.com/ - IFixIt</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:16:38 : Home Assistant 2024.08 :<br><a href="https://www.home-assistant.io/blog/2024/08/07/release-20248/ - LLAMA 3.1 support" target="_blank" rel="noreferrer noopener">https://www.home-assistant.io/blog/2024/08/07/release-20248/ - LLAMA 3.1 support<br></a><a href="https://www.openhomefoundation.org/ - passage en foundation" target="_blank" rel="noreferrer noopener">https://www.openhomefoundation.org/ - passage en foundation<br></a><a href="https://esphome.io/ - ESPHome" target="_blank" rel="noreferrer noopener">https://esphome.io/ - ESPHome<br></a><a href="https://github.com/visualapproach/WiFi-remote-for-Bestway-Lay-Z-SPA - hack du SPA pour home assistant" target="_blank" rel="noreferrer noopener">https://github.com/visualapproach/WiFi-remote-for-Bestway-Lay-Z-SPA - hack du SPA pour home assistant</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:43 : Proton evolve to a non profit foundation :<br><a href="https://proton.me/blog/fr/proton-non-profit-foundation" target="_blank" rel="noreferrer noopener">https://proton.me/blog/fr/proton-non-profit-foundation</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:44:48 : Root cause analysis Crowdstrike - Est-ce que Rust aurait pu l’éviter ?<br><a href="https://www.crowdstrike.com/falcon-content-update-remediation-and-guidance-hub/" target="_blank" rel="noreferrer noopener">https://www.crowdstrike.com/falcon-content-update-remediation-and-guidance-hub/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:53:16 : Musique de fin : Popcorn <br><a href="https://youtu.be/Yx0KBLFG8qc?si=mN0FTpAACWrPbW1K" target="_blank" rel="noreferrer noopener">https://youtu.be/Yx0KBLFG8qc?si=mN0FTpAACWrPbW1K</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/08/111.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="111" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/08/111.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/08/111-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/08/111-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/08/111-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/08/111-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/08/111-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/Ve7NoQ7MG8M" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Horacio Gonzalez - @LostInBrittany <br>avec la participation de : </p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Sylvain Wallez - @bluxte </li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Emmanuel Bosquet - @EmmanuelBosquet </li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Erwan Rougeux - @ERougeux </li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 19 août 2024</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋 Venez discuter avec nous sur @clever_cloudFR pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️ Pour découvrir ou réécouter d’anciens épisodes&nbsp;c’est par ici&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage &amp; Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 : Introduction et présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:03:00 : Debug machine à laver<br><a href="https://x.com/bluxte/status/1824857486811103239" target="_blank" rel="noreferrer noopener">https://x.com/bluxte/status/1824857486811103239<br></a><a href="https://www.ifixit.com/ - IFixIt" target="_blank" rel="noreferrer noopener">https://www.ifixit.com/ - IFixIt</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:16:38 : Home Assistant 2024.08 :<br><a href="https://www.home-assistant.io/blog/2024/08/07/release-20248/ - LLAMA 3.1 support" target="_blank" rel="noreferrer noopener">https://www.home-assistant.io/blog/2024/08/07/release-20248/ - LLAMA 3.1 support<br></a><a href="https://www.openhomefoundation.org/ - passage en foundation" target="_blank" rel="noreferrer noopener">https://www.openhomefoundation.org/ - passage en foundation<br></a><a href="https://esphome.io/ - ESPHome" target="_blank" rel="noreferrer noopener">https://esphome.io/ - ESPHome<br></a><a href="https://github.com/visualapproach/WiFi-remote-for-Bestway-Lay-Z-SPA - hack du SPA pour home assistant" target="_blank" rel="noreferrer noopener">https://github.com/visualapproach/WiFi-remote-for-Bestway-Lay-Z-SPA - hack du SPA pour home assistant</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:43 : Proton evolve to a non profit foundation :<br><a href="https://proton.me/blog/fr/proton-non-profit-foundation" target="_blank" rel="noreferrer noopener">https://proton.me/blog/fr/proton-non-profit-foundation</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:44:48 : Root cause analysis Crowdstrike - Est-ce que Rust aurait pu l’éviter ?<br><a href="https://www.crowdstrike.com/falcon-content-update-remediation-and-guidance-hub/" target="_blank" rel="noreferrer noopener">https://www.crowdstrike.com/falcon-content-update-remediation-and-guidance-hub/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:53:16 : Musique de fin : Popcorn <br><a href="https://youtu.be/Yx0KBLFG8qc?si=mN0FTpAACWrPbW1K" target="_blank" rel="noreferrer noopener">https://youtu.be/Yx0KBLFG8qc?si=mN0FTpAACWrPbW1K</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/aux-origines-du-bug-la-domotique-pop-et-souvre-au-proton/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_111.mp3" length="78649009" type="audio/mpeg" />

			</item>
		<item>
		<title>Les hackers éthiques parent les fuites en bloquant le scrap des IA</title>
		<link>https://www.clever.cloud/podcast/les-hackers-ethiques-parent-les-fuites-en-bloquant-le-scrap-des-ia/</link>
					<comments>https://www.clever.cloud/podcast/les-hackers-ethiques-parent-les-fuites-en-bloquant-le-scrap-des-ia/#respond</comments>
		
		<dc:creator><![CDATA[Horacio Gonzalez]]></dc:creator>
		<pubDate>Fri, 16 Aug 2024 07:34:11 +0000</pubDate>
				<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Cloudflare]]></category>
		<category><![CDATA[Dgraph]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[OVHCloud]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=13158</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/08/110.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="110" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/08/110.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/08/110-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/08/110-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/08/110-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/08/110-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/08/110-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/6k01lDVLaPo" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Horacio Gonzalez - @LostInBrittany<br>avec la participation de :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Julien Briault - @ju_hnny5</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Lisa Carrier - @Lisaa_cr</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Florentin Dubois - @FlorentinDUBOIS</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 25 juillet 2024</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋 Venez discuter avec nous sur @clever_cloudFR pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️ Pour découvrir ou réécouter d’anciens épisodes&nbsp;c’est par ici&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 : Introduction et présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:02:13 : Formation de Lisa et le hacking éthique<br><a href="https://www.utt.fr/formations/diplome-d-ingenieur/reseaux-et-telecommunications" target="_blank" rel="noreferrer noopener">https://www.utt.fr/formations/diplome-d-ingenieur/reseaux-et-telecommunications<br></a><a href="https://www.linkedin.com/company/hackutt/posts/?feedView=all" target="_blank" rel="noreferrer noopener">https://www.linkedin.com/company/hackutt/posts/?feedView=all</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:45 : Un outil pour éviter les leaks de secrets<br><a href="https://github.com/gitleaks/gitleaks" target="_blank" rel="noreferrer noopener">https://github.com/gitleaks/gitleaks</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:08:15: Un outil pour scanner les ports<br><a href="https://github.com/RustScan/RustScan" target="_blank" rel="noreferrer noopener">https://github.com/RustScan/RustScan</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:33 : regreSSHion : une faille critique dans OpenSSH touche des millions de serveurs<br><a href="https://blog.qualys.com/vulnerabilities-threat-research/2024/07/01/regresshion-remote-unauthenticated-code-execution-vulnerability-in-openssh-server" target="_blank" rel="noreferrer noopener">https://blog.qualys.com/vulnerabilities-threat-research/2024/07/01/regresshion-remote-unauthenticated-code-execution-vulnerability-in-openssh-server</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:12:56 : Arx, un outil écrit en Rust (aussi) pour remplacer Tar<br><a href="https://github.com/jubako/arx" target="_blank" rel="noreferrer noopener">https://github.com/jubako/arx<br></a>Performance : <a href="https://github.com/jubako/arx?tab=readme-ov-file-performance">https://github.com/jubako/arx?tab=readme-ov-file-performance</a><br>CoreUtils en Rust : <a href="https://github.com/uutils/coreutils" target="_blank" rel="noreferrer noopener">https://github.com/uutils/coreutils</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:18:06 : Cloudflare : un nouvel outil gratuit empêche les robots de siphonner le contenu des sites web pour entraîner des IA<br><a href="https://www.zdnet.fr/actualites/cloudflare-un-nouvel-outil-gratuit-empeche-les-robots-de-siphonner-le-contenu-des-sites-web-pour-entrainer-des-ia-394241.htm" target="_blank" rel="noreferrer noopener">https://www.zdnet.fr/actualites/cloudflare-un-nouvel-outil-gratuit-empeche-les-robots-de-siphonner-le-contenu-des-sites-web-pour-entrainer-des-ia-394241.htm</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:09 : Stack Overflow Annual Developer Survey<br><a href="https://stackoverflow.blog/2024/07/24/developers-want-more-more-more-the-2024-results-from-stack-overflow-s-annual-developer-survey/" target="_blank" rel="noreferrer noopener">https://stackoverflow.blog/2024/07/24/developers-want-more-more-more-the-2024-results-from-stack-overflow-s-annual-developer-survey/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:45: OVHcloud, Managed Rancher Service<br><a href="https://blog.ovhcloud.com/how-to-create-a-kubernetes-cluster-in-a-local-zone-through-managed-rancher-service/" target="_blank" rel="noreferrer noopener">https://blog.ovhcloud.com/how-to-create-a-kubernetes-cluster-in-a-local-zone-through-managed-rancher-service/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:29:18 : Illiad recherche un acquéreur pour racheter 49% du capital de sa filiale de centres de données OpCore<br><a href="https://www.universfreebox.com/article/567767/iliad-met-en-vente-49-de-ses-data-centers-pour-reduire-sa-dette" target="_blank" rel="noreferrer noopener">https://www.universfreebox.com/article/567767/iliad-met-en-vente-49-de-ses-data-centers-pour-reduire-sa-dette</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:32:25 : Chrome, ability to turn off sharing of third party<br><a href="https://www.theverge.com/2024/7/22/24203893/google-cookie-tracking-prompt-ad-targeting-privacy-sandbox" target="_blank" rel="noreferrer noopener">https://www.theverge.com/2024/7/22/24203893/google-cookie-tracking-prompt-ad-targeting-privacy-sandbox</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:35:12 : Apple Maps sur le Web en version Bêta<br><a href="https://x.com/theapplehub/status/1816189777693270332?s=46&amp;t=TTwUj4NwwFWNozryQD5j4Q" target="_blank" rel="noreferrer noopener">https://x.com/theapplehub/status/1816189777693270332?s=46&amp;t=TTwUj4NwwFWNozryQD5j4Q<br></a><a href="https://www.openstreetmap.org/" target="_blank" rel="noreferrer noopener">https://www.openstreetmap.org/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:37:11 : Lancement produit chez Ubiquity : Cloud Gateway Max<br><a href="https://9to5mac.com/2024/07/16/ubiquiti-launches-new-cloud-gateway-max/" target="_blank" rel="noreferrer noopener">https://9to5mac.com/2024/07/16/ubiquiti-launches-new-cloud-gateway-max/<br></a><a href="https://www.reddit.com/r/Ubiquiti/comments/1aoicwx/playing_snake_on_etherlighting_switch/" target="_blank" rel="noreferrer noopener">https://www.reddit.com/r/Ubiquiti/comments/1aoicwx/playing_snake_on_etherlighting_switch/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:59 : Security overview dashboard (la suite logique de dependabot)<br><a href="https://github.blog/changelog/2024-07-19-security-overview-dashboards-secret-scanning-metrics-and-enablement-trends-reports-are-now-generally-available" target="_blank" rel="noreferrer noopener">https://github.blog/changelog/2024-07-19-security-overview-dashboards-secret-scanning-metrics-and-enablement-trends-reports-are-now-generally-available</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:54 : Dgraph, back to basics<br><a href="https://dgraph.io/blog/post/what-is-acid-transaction/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/what-is-acid-transaction/<br></a><a href="https://dgraph.io/blog/post/clustering-database/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/clustering-database/<br></a><a href="https://dgraph.io/blog/post/leiden-clustering/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/leiden-clustering/<br></a><a href="https://dgraph.io/blog/post/what-is-vertical-scaling/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/what-is-vertical-scaling/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:55 : Cillium v1.16.0<br><a href="https://github.com/cilium/cilium/releases/tag/v1.16.0" target="_blank" rel="noreferrer noopener">https://github.com/cilium/cilium/releases/tag/v1.16.0</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:30 : Musique de fin<br><a href="https://www.youtube.com/watch?v=fYpT1XGy250&amp;pp=ygUcaW5mbHVlbmNldXIgYXNjZW5kYW50IHZpZXJnZQ%3D%3D" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=fYpT1XGy250&amp;pp=ygUcaW5mbHVlbmNldXIgYXNjZW5kYW50IHZpZXJnZQ%3D%3D</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/08/110.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="110" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/08/110.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/08/110-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/08/110-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/08/110-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/08/110-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/08/110-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/6k01lDVLaPo" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Horacio Gonzalez - @LostInBrittany<br>avec la participation de :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Julien Briault - @ju_hnny5</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Lisa Carrier - @Lisaa_cr</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Florentin Dubois - @FlorentinDUBOIS</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 25 juillet 2024</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋 Venez discuter avec nous sur @clever_cloudFR pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️ Pour découvrir ou réécouter d’anciens épisodes&nbsp;c’est par ici&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 : Introduction et présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:02:13 : Formation de Lisa et le hacking éthique<br><a href="https://www.utt.fr/formations/diplome-d-ingenieur/reseaux-et-telecommunications" target="_blank" rel="noreferrer noopener">https://www.utt.fr/formations/diplome-d-ingenieur/reseaux-et-telecommunications<br></a><a href="https://www.linkedin.com/company/hackutt/posts/?feedView=all" target="_blank" rel="noreferrer noopener">https://www.linkedin.com/company/hackutt/posts/?feedView=all</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:45 : Un outil pour éviter les leaks de secrets<br><a href="https://github.com/gitleaks/gitleaks" target="_blank" rel="noreferrer noopener">https://github.com/gitleaks/gitleaks</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:08:15: Un outil pour scanner les ports<br><a href="https://github.com/RustScan/RustScan" target="_blank" rel="noreferrer noopener">https://github.com/RustScan/RustScan</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:33 : regreSSHion : une faille critique dans OpenSSH touche des millions de serveurs<br><a href="https://blog.qualys.com/vulnerabilities-threat-research/2024/07/01/regresshion-remote-unauthenticated-code-execution-vulnerability-in-openssh-server" target="_blank" rel="noreferrer noopener">https://blog.qualys.com/vulnerabilities-threat-research/2024/07/01/regresshion-remote-unauthenticated-code-execution-vulnerability-in-openssh-server</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:12:56 : Arx, un outil écrit en Rust (aussi) pour remplacer Tar<br><a href="https://github.com/jubako/arx" target="_blank" rel="noreferrer noopener">https://github.com/jubako/arx<br></a>Performance : <a href="https://github.com/jubako/arx?tab=readme-ov-file-performance">https://github.com/jubako/arx?tab=readme-ov-file-performance</a><br>CoreUtils en Rust : <a href="https://github.com/uutils/coreutils" target="_blank" rel="noreferrer noopener">https://github.com/uutils/coreutils</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:18:06 : Cloudflare : un nouvel outil gratuit empêche les robots de siphonner le contenu des sites web pour entraîner des IA<br><a href="https://www.zdnet.fr/actualites/cloudflare-un-nouvel-outil-gratuit-empeche-les-robots-de-siphonner-le-contenu-des-sites-web-pour-entrainer-des-ia-394241.htm" target="_blank" rel="noreferrer noopener">https://www.zdnet.fr/actualites/cloudflare-un-nouvel-outil-gratuit-empeche-les-robots-de-siphonner-le-contenu-des-sites-web-pour-entrainer-des-ia-394241.htm</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:09 : Stack Overflow Annual Developer Survey<br><a href="https://stackoverflow.blog/2024/07/24/developers-want-more-more-more-the-2024-results-from-stack-overflow-s-annual-developer-survey/" target="_blank" rel="noreferrer noopener">https://stackoverflow.blog/2024/07/24/developers-want-more-more-more-the-2024-results-from-stack-overflow-s-annual-developer-survey/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:45: OVHcloud, Managed Rancher Service<br><a href="https://blog.ovhcloud.com/how-to-create-a-kubernetes-cluster-in-a-local-zone-through-managed-rancher-service/" target="_blank" rel="noreferrer noopener">https://blog.ovhcloud.com/how-to-create-a-kubernetes-cluster-in-a-local-zone-through-managed-rancher-service/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:29:18 : Illiad recherche un acquéreur pour racheter 49% du capital de sa filiale de centres de données OpCore<br><a href="https://www.universfreebox.com/article/567767/iliad-met-en-vente-49-de-ses-data-centers-pour-reduire-sa-dette" target="_blank" rel="noreferrer noopener">https://www.universfreebox.com/article/567767/iliad-met-en-vente-49-de-ses-data-centers-pour-reduire-sa-dette</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:32:25 : Chrome, ability to turn off sharing of third party<br><a href="https://www.theverge.com/2024/7/22/24203893/google-cookie-tracking-prompt-ad-targeting-privacy-sandbox" target="_blank" rel="noreferrer noopener">https://www.theverge.com/2024/7/22/24203893/google-cookie-tracking-prompt-ad-targeting-privacy-sandbox</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:35:12 : Apple Maps sur le Web en version Bêta<br><a href="https://x.com/theapplehub/status/1816189777693270332?s=46&amp;t=TTwUj4NwwFWNozryQD5j4Q" target="_blank" rel="noreferrer noopener">https://x.com/theapplehub/status/1816189777693270332?s=46&amp;t=TTwUj4NwwFWNozryQD5j4Q<br></a><a href="https://www.openstreetmap.org/" target="_blank" rel="noreferrer noopener">https://www.openstreetmap.org/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:37:11 : Lancement produit chez Ubiquity : Cloud Gateway Max<br><a href="https://9to5mac.com/2024/07/16/ubiquiti-launches-new-cloud-gateway-max/" target="_blank" rel="noreferrer noopener">https://9to5mac.com/2024/07/16/ubiquiti-launches-new-cloud-gateway-max/<br></a><a href="https://www.reddit.com/r/Ubiquiti/comments/1aoicwx/playing_snake_on_etherlighting_switch/" target="_blank" rel="noreferrer noopener">https://www.reddit.com/r/Ubiquiti/comments/1aoicwx/playing_snake_on_etherlighting_switch/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:59 : Security overview dashboard (la suite logique de dependabot)<br><a href="https://github.blog/changelog/2024-07-19-security-overview-dashboards-secret-scanning-metrics-and-enablement-trends-reports-are-now-generally-available" target="_blank" rel="noreferrer noopener">https://github.blog/changelog/2024-07-19-security-overview-dashboards-secret-scanning-metrics-and-enablement-trends-reports-are-now-generally-available</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:54 : Dgraph, back to basics<br><a href="https://dgraph.io/blog/post/what-is-acid-transaction/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/what-is-acid-transaction/<br></a><a href="https://dgraph.io/blog/post/clustering-database/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/clustering-database/<br></a><a href="https://dgraph.io/blog/post/leiden-clustering/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/leiden-clustering/<br></a><a href="https://dgraph.io/blog/post/what-is-vertical-scaling/" target="_blank" rel="noreferrer noopener">https://dgraph.io/blog/post/what-is-vertical-scaling/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:55 : Cillium v1.16.0<br><a href="https://github.com/cilium/cilium/releases/tag/v1.16.0" target="_blank" rel="noreferrer noopener">https://github.com/cilium/cilium/releases/tag/v1.16.0</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:30 : Musique de fin<br><a href="https://www.youtube.com/watch?v=fYpT1XGy250&amp;pp=ygUcaW5mbHVlbmNldXIgYXNjZW5kYW50IHZpZXJnZQ%3D%3D" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=fYpT1XGy250&amp;pp=ygUcaW5mbHVlbmNldXIgYXNjZW5kYW50IHZpZXJnZQ%3D%3D</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/les-hackers-ethiques-parent-les-fuites-en-bloquant-le-scrap-des-ia/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_110.mp3" length="71442173" type="audio/mpeg" />

			</item>
		<item>
		<title>Bilan 2023, perspectives 2024</title>
		<link>https://www.clever.cloud/podcast/bilan-2023-perspectives-2024/</link>
					<comments>https://www.clever.cloud/podcast/bilan-2023-perspectives-2024/#respond</comments>
		
		<dc:creator><![CDATA[Quentin Adam]]></dc:creator>
		<pubDate>Fri, 02 Feb 2024 07:23:43 +0000</pubDate>
				<category><![CDATA[Chat GPT]]></category>
		<category><![CDATA[ESN]]></category>
		<category><![CDATA[Green Tech]]></category>
		<category><![CDATA[Open AI]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[SREN]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=11637</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/01/101.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="101" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/01/101.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/01/101-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/01/101-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/01/101-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/01/101-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/01/101-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/OtAoUQHkvno" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p>Animé par Quentin ADAM - @waxzce<br>avec la participation de : <br>Anaïs Vivion - CEO de Beapp et Présidente de French Tech Nantes<br>Denis Germain -  Senior Lead SRE - Deezer - @zwindler<br>Nathan Ménard  - CEO de Drakkar -  @n_menard</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 16 janvier 2024 au Palace de Nantes</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Coordination : Carine GUILLEMET <br>Cadreur : Lucas PARISET <br>Réalisation : Yann BRESSON <br>Moyens Techniques : <a href="https://www.smartmedias.fr" target="_blank" rel="noreferrer noopener">Smartmedias</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:00 Introduction et présentation des invités </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:03:00 Quatre statements (ou presque...)  pour résumer 2023 : 1- on est tous passés au Metavers </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:17 : 2- Le feuilleton Open AI </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:42 : 3- X / Twitter, c'était mieux avant... </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:09:05 : 4- Tout le monde a compris le projet de loi SREN </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:16  Regards croisés sur 2023 : L'essor de ChatGPT et des IA génératives </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:16:00 La course à la rentabilité pour 2024 dans la Tech </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:40 GreenTech : L'impact des stratégies numérique responsable </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:45 L'innovation de l'année : l'IA - Regards croisés </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:24 Souveraineté technologique </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:47 Les tendances à venir pour 2024 : La fin des stagiaires ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:45:50 2024, l'année Rust </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:42 L'IA et Clever ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:24 Le déclin des ESN </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:51:20 Des robots intelligents </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:52:40 L'IA, un destin comparable à celui des NFT ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:54:45 Recrudescence d'incidents de sécurité </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:55:45 Les élections américaines </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:59:10 Le retour de PhP dans le top du WEB </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:00:10 La curation des IA par l'IA </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:02:05 Manipulations de masses avec les élections à venir </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:05:50 Questions / Réponses avec le public - Le désenchantement du software ?</p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2024/01/101.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="101" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2024/01/101.jpg 1920w, https://cdn.clever-cloud.com/uploads/2024/01/101-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2024/01/101-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2024/01/101-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2024/01/101-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2024/01/101-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/OtAoUQHkvno" target="_blank" rel="noreferrer noopener">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p>Animé par Quentin ADAM - @waxzce<br>avec la participation de : <br>Anaïs Vivion - CEO de Beapp et Présidente de French Tech Nantes<br>Denis Germain -  Senior Lead SRE - Deezer - @zwindler<br>Nathan Ménard  - CEO de Drakkar -  @n_menard</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 16 janvier 2024 au Palace de Nantes</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Coordination : Carine GUILLEMET <br>Cadreur : Lucas PARISET <br>Réalisation : Yann BRESSON <br>Moyens Techniques : <a href="https://www.smartmedias.fr" target="_blank" rel="noreferrer noopener">Smartmedias</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:00 Introduction et présentation des invités </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:03:00 Quatre statements (ou presque...)  pour résumer 2023 : 1- on est tous passés au Metavers </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:17 : 2- Le feuilleton Open AI </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:42 : 3- X / Twitter, c'était mieux avant... </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:09:05 : 4- Tout le monde a compris le projet de loi SREN </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:16  Regards croisés sur 2023 : L'essor de ChatGPT et des IA génératives </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:16:00 La course à la rentabilité pour 2024 dans la Tech </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:40 GreenTech : L'impact des stratégies numérique responsable </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:45 L'innovation de l'année : l'IA - Regards croisés </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:24 Souveraineté technologique </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:47 Les tendances à venir pour 2024 : La fin des stagiaires ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:45:50 2024, l'année Rust </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:42 L'IA et Clever ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:24 Le déclin des ESN </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:51:20 Des robots intelligents </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:52:40 L'IA, un destin comparable à celui des NFT ? </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:54:45 Recrudescence d'incidents de sécurité </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:55:45 Les élections américaines </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:59:10 Le retour de PhP dans le top du WEB </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:00:10 La curation des IA par l'IA </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:02:05 Manipulations de masses avec les élections à venir </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:05:50 Questions / Réponses avec le public - Le désenchantement du software ?</p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/bilan-2023-perspectives-2024/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_101.mp3" length="105011295" type="audio/mpeg" />

			</item>
		<item>
		<title>Sur des réseaux payants, Rust et Wasm risc tout pour contrer PowerPoint</title>
		<link>https://www.clever.cloud/podcast/sur-des-reseaux-payants-rust-et-wasm-risc-tout-pour-contrer-powerpoint/</link>
					<comments>https://www.clever.cloud/podcast/sur-des-reseaux-payants-rust-et-wasm-risc-tout-pour-contrer-powerpoint/#respond</comments>
		
		<dc:creator><![CDATA[Jean-Baptiste Kaiser]]></dc:creator>
		<pubDate>Fri, 24 Nov 2023 06:43:53 +0000</pubDate>
				<category><![CDATA[AdBlock]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Intagram]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[RISCV]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[Turing]]></category>
		<category><![CDATA[Wasm]]></category>
		<category><![CDATA[WebAssembly]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=11150</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/11/96.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="96" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/11/96.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/11/96-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/11/96-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/11/96-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/11/96-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/11/96-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/OtJRKUSeni4">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Jean-Baptiste KAISER  - @ArendSyl<br>avec la participation de : <br>- Guillaume ASSIER : @GuillaumeAssier<br>- Eloi DEMOLIS :  @Wonshtrum<br>- Sylvain WALLEZ : @bluxte </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 7 novembre 2023 </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:01:52 Google/YouTube et la pub<br><a href="https://andadinosaur.com/youtube-s-anti-adblock-and-ublock-origin
">https://andadinosaur.com/youtube-s-anti-adblock-and-ublock-origin<br></a>et <a href="https://www.theverge.com/2023/10/27/23934961/google-antitrust-trial-defaults-search-deal-26-3-billion">https://www.theverge.com/2023/10/27/23934961/google-antitrust-trial-defaults-search-deal-26-3-billion</a> </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:43 Facebook et Instagram payants en Europe ?<br><a href="https://about.fb.com/news/2023/10/facebook-and-instagram-to-offer-subscription-for-no-ads-in-europe/
">https://about.fb.com/news/2023/10/facebook-and-instagram-to-offer-subscription-for-no-ads-in-europe/<br></a><a href="https://www.linkedin.com/pulse/meta-et-rgpd-pourquoi-labonnement-payant-%C3%A0-facebook-pose-champeau-cp2le">https://www.linkedin.com/pulse/meta-et-rgpd-pourquoi-labonnement-payant-%C3%A0-facebook-pose-champeau-cp2le</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:14:26 Emulation Risc V sur Linux avec Scratch <br><a href="https://www.hackster.io/news/linux-on-scratch-is-proven-possible-thanks-to-this-clever-risc-v-emulator-project-815bf0937ec7">https://www.hackster.io/news/linux-on-scratch-is-proven-possible-thanks-to-this-clever-risc-v-emulator-project-815bf0937ec7</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:17:30 Une machine de Turing sous PowerPoint<br><a href="https://www.youtube.com/watch?v=deswvXZ0Sjc
">https://www.youtube.com/watch?v=deswvXZ0Sjc<br></a>On The Turing Completeness of PowerPoint (SIGBOVIK)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:20:20 Brainfuck latex<br><a href="https://www.youtube.com/watch?v=deswvXZ0Sjc
">https://www.youtube.com/watch?v=deswvXZ0Sjc<br></a>[DEVFEST Toulouse 2019] Applications de Brainfuck, langage minimaliste mais Turing-complet</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:28 Async traits merged in master<br><a href="https://twitter.com/compiler_errors/status/1713338363460321763
">https://twitter.com/compiler_errors/status/1713338363460321763<br></a><a href="https://releases.rs/docs/1.75.0/">https://releases.rs/docs/1.75.0/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:30 Linux v6.6 avec du nouveau sur eBPF<br><a href="https://twitter.com/pchaigno/status/1719024426774069701">https://twitter.com/pchaigno/status/1719024426774069701</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:29:17 WebAssembly pour passer du Rust en douce<br><a href="https://twitter.com/bluxte/status/1717233980485914986">https://twitter.com/bluxte/status/1717233980485914986</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:12 WebAssembly GC dans Chrome<br><a href="https://developer.chrome.com/blog/wasmgc/">https://developer.chrome.com/blog/wasmgc/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:10 Rust certifié pour les systèmes critiques<br><a href="https://ferrous-systems.com/blog/ferrocene-open-source/">https://ferrous-systems.com/blog/ferrocene-open-source/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:58:10 Tailspin, un petit outil en Rust pour lire des logs colorisés<br><a href="https://github.com/bensadeh/tailspin">https://github.com/bensadeh/tailspin</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:03:23 : Musique de fin : Måneskin - HONEY (ARE U COMING?)<br><a href="https://www.youtube.com/watch?v=ds18Ozzp8h0">https://www.youtube.com/watch?v=ds18Ozzp8h0</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/11/96.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="96" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/11/96.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/11/96-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/11/96-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/11/96-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/11/96-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/11/96-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/OtJRKUSeni4">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Animé par Jean-Baptiste KAISER  - @ArendSyl<br>avec la participation de : <br>- Guillaume ASSIER : @GuillaumeAssier<br>- Eloi DEMOLIS :  @Wonshtrum<br>- Sylvain WALLEZ : @bluxte </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 7 novembre 2023 </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Chapitrage et liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:01:52 Google/YouTube et la pub<br><a href="https://andadinosaur.com/youtube-s-anti-adblock-and-ublock-origin
">https://andadinosaur.com/youtube-s-anti-adblock-and-ublock-origin<br></a>et <a href="https://www.theverge.com/2023/10/27/23934961/google-antitrust-trial-defaults-search-deal-26-3-billion">https://www.theverge.com/2023/10/27/23934961/google-antitrust-trial-defaults-search-deal-26-3-billion</a> </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:43 Facebook et Instagram payants en Europe ?<br><a href="https://about.fb.com/news/2023/10/facebook-and-instagram-to-offer-subscription-for-no-ads-in-europe/
">https://about.fb.com/news/2023/10/facebook-and-instagram-to-offer-subscription-for-no-ads-in-europe/<br></a><a href="https://www.linkedin.com/pulse/meta-et-rgpd-pourquoi-labonnement-payant-%C3%A0-facebook-pose-champeau-cp2le">https://www.linkedin.com/pulse/meta-et-rgpd-pourquoi-labonnement-payant-%C3%A0-facebook-pose-champeau-cp2le</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:14:26 Emulation Risc V sur Linux avec Scratch <br><a href="https://www.hackster.io/news/linux-on-scratch-is-proven-possible-thanks-to-this-clever-risc-v-emulator-project-815bf0937ec7">https://www.hackster.io/news/linux-on-scratch-is-proven-possible-thanks-to-this-clever-risc-v-emulator-project-815bf0937ec7</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:17:30 Une machine de Turing sous PowerPoint<br><a href="https://www.youtube.com/watch?v=deswvXZ0Sjc
">https://www.youtube.com/watch?v=deswvXZ0Sjc<br></a>On The Turing Completeness of PowerPoint (SIGBOVIK)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:20:20 Brainfuck latex<br><a href="https://www.youtube.com/watch?v=deswvXZ0Sjc
">https://www.youtube.com/watch?v=deswvXZ0Sjc<br></a>[DEVFEST Toulouse 2019] Applications de Brainfuck, langage minimaliste mais Turing-complet</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:22:28 Async traits merged in master<br><a href="https://twitter.com/compiler_errors/status/1713338363460321763
">https://twitter.com/compiler_errors/status/1713338363460321763<br></a><a href="https://releases.rs/docs/1.75.0/">https://releases.rs/docs/1.75.0/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:30 Linux v6.6 avec du nouveau sur eBPF<br><a href="https://twitter.com/pchaigno/status/1719024426774069701">https://twitter.com/pchaigno/status/1719024426774069701</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:29:17 WebAssembly pour passer du Rust en douce<br><a href="https://twitter.com/bluxte/status/1717233980485914986">https://twitter.com/bluxte/status/1717233980485914986</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:38:12 WebAssembly GC dans Chrome<br><a href="https://developer.chrome.com/blog/wasmgc/">https://developer.chrome.com/blog/wasmgc/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:10 Rust certifié pour les systèmes critiques<br><a href="https://ferrous-systems.com/blog/ferrocene-open-source/">https://ferrous-systems.com/blog/ferrocene-open-source/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:58:10 Tailspin, un petit outil en Rust pour lire des logs colorisés<br><a href="https://github.com/bensadeh/tailspin">https://github.com/bensadeh/tailspin</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:03:23 : Musique de fin : Måneskin - HONEY (ARE U COMING?)<br><a href="https://www.youtube.com/watch?v=ds18Ozzp8h0">https://www.youtube.com/watch?v=ds18Ozzp8h0</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/sur-des-reseaux-payants-rust-et-wasm-risc-tout-pour-contrer-powerpoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_96.mp3" length="94336427" type="audio/mpeg" />

			</item>
		<item>
		<title>Clever Cloud goes live on Twitch</title>
		<link>https://www.clever.cloud/blog/company/2023/10/25/clever-cloud-goes-live-on-twitch/</link>
		
		<dc:creator><![CDATA[Carine Guillemet]]></dc:creator>
		<pubDate>Wed, 25 Oct 2023 11:57:43 +0000</pubDate>
				<category><![CDATA[Company]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[rustlang]]></category>
		<category><![CDATA[twitch]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?p=10918</guid>

					<description><![CDATA[<p><img width="900" height="355" src="https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="bannieretwitchblog 3 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1.png 900w, https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1-300x118.png 300w, https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1-768x303.png 768w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p><!-- wp:paragraph -->
<p>After the MACI podcast, Clever Cloud is now offering new content on Twitch. On this platform, the aim is more pedagogical: to offer viewers the chance to improve their skills in certain languages and tools.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">First content on Rust language</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The Rust language is gaining in popularity for its performance, its low-level nature, its memory security and its ability to detect errors at compile time.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, it's being used more and more, and we're seeing a real increase in interest when we talk to developers at trade fairs and meetings.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><a href="https://lafor.ge">Akanoa</a> then came up with the idea of sharing his skills via Twitch lives. A Clever Cloud colleague, Manu, was keen to learn this language. It was the perfect way to launch the channel. We're going to continue with this, and add new content as the months go by.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">How can you take part?</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>There are 2 ways to enter today:</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>First, you can follow our live <a href="https://www.twitch.tv/clevercloud">Twitch</a> sessions every other Wednesday (whenever possible) from 3 to 5 p.m. on our Twitch channel,</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Secondly, you can replay our live sessions on the Twitch channel or on our <a href="https://youtu.be/KKmTWHgtjis">Youtube channel</a>.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>We're thinking of offering our viewers the chance to take part in live sessions in the future. If you're interested in taking part in our content one day, please contact us.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">A will to share</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>At Clever Cloud, sharing skills is an integral part of our values: Open Source, talks, workshops, and so on. We're also committed to Open Source (Reverse Proxy <a href="https://www.clever.cloud/fr/blog/engineering-fr/2023/09/25/nos-connecteurs-sozu-open-source/">Sōzu</a> , the Biscuit token, participation in the Linux kernel, etc.) and strongly believe that sharing lifts everyone up. Today, going on Twitch is a new step in this willingness to share knowledge that we're proud of.</p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="900" height="355" src="https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="bannieretwitchblog 3 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1.png 900w, https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1-300x118.png 300w, https://cdn.clever-cloud.com/uploads/2023/10/bannieretwitchblog-3-1-768x303.png 768w" sizes="auto, (max-width: 900px) 100vw, 900px" /></p><!-- wp:paragraph -->
<p>After the MACI podcast, Clever Cloud is now offering new content on Twitch. On this platform, the aim is more pedagogical: to offer viewers the chance to improve their skills in certain languages and tools.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">First content on Rust language</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>The Rust language is gaining in popularity for its performance, its low-level nature, its memory security and its ability to detect errors at compile time.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, it's being used more and more, and we're seeing a real increase in interest when we talk to developers at trade fairs and meetings.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><a href="https://lafor.ge">Akanoa</a> then came up with the idea of sharing his skills via Twitch lives. A Clever Cloud colleague, Manu, was keen to learn this language. It was the perfect way to launch the channel. We're going to continue with this, and add new content as the months go by.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">How can you take part?</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>There are 2 ways to enter today:</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>First, you can follow our live <a href="https://www.twitch.tv/clevercloud">Twitch</a> sessions every other Wednesday (whenever possible) from 3 to 5 p.m. on our Twitch channel,</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Secondly, you can replay our live sessions on the Twitch channel or on our <a href="https://youtu.be/KKmTWHgtjis">Youtube channel</a>.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>We're thinking of offering our viewers the chance to take part in live sessions in the future. If you're interested in taking part in our content one day, please contact us.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">A will to share</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>At Clever Cloud, sharing skills is an integral part of our values: Open Source, talks, workshops, and so on. We're also committed to Open Source (Reverse Proxy <a href="https://www.clever.cloud/fr/blog/engineering-fr/2023/09/25/nos-connecteurs-sozu-open-source/">Sōzu</a> , the Biscuit token, participation in the Linux kernel, etc.) and strongly believe that sharing lifts everyone up. Today, going on Twitch is a new step in this willingness to share knowledge that we're proud of.</p>
<!-- /wp:paragraph -->]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Des machines virtuelles photoshopent leurs émojis en ligne pour passer sur Twitch</title>
		<link>https://www.clever.cloud/podcast/des-machines-virtuelles-photoshopent-leurs-emojis-en-ligne-pour-passer-sur-twitch/</link>
					<comments>https://www.clever.cloud/podcast/des-machines-virtuelles-photoshopent-leurs-emojis-en-ligne-pour-passer-sur-twitch/#respond</comments>
		
		<dc:creator><![CDATA[Quentin Adam]]></dc:creator>
		<pubDate>Fri, 13 Oct 2023 06:16:40 +0000</pubDate>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[emoji]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Rust]]></category>
		<category><![CDATA[twitch]]></category>
		<category><![CDATA[visual code studio]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=10725</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/10/92.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="92" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/10/92.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/10/92-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/10/92-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/10/92-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/10/92-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/10/92-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/uh17WpV8HLo">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p><br>Animé par Quentin ADAM </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>avec la participation de :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Sun Tan - @__sunix_</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Horacio Gonzalez - @LostInBrittany</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Sebastien Blanc - @sebi2706</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 5 octobre 2023 </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Timecodes et liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:02:45 Rust pour Intellij devient payant<br><a href="https://x.com/rustrover/status/1701944316573204945?s=46&amp;t=Cd-Q3SyiffHQkyTKLC-sFg">https://x.com/rustrover/status/1701944316573204945?s=46&amp;t=Cd-Q3SyiffHQkyTKLC-sFg</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:07:14 Comment rattraper ses erreurs dans Git avec Dangit<br><a href="https://dangitgit.com/en">https://dangitgit.com/en</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:07:53 Une proposition de standardisation des emoji dans Git : codification ou source d’inspiration ?<br><a href="https://gitmoji.dev">https://gitmoji.dev</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:11:20 Nouveau projet exemple de Clever Cloud en .NET<br><a href="https://x.com/waxzce/status/1709558406405644785?s=20">https://x.com/waxzce/status/1709558406405644785?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:13:15 Visual Code Studio - nouvelle version 1.82<br><a href="https://twitter.com/davlgd/status/1699886746937540814">https://twitter.com/davlgd/status/1699886746937540814</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:15:50 Oracle prépare un plugin Java pour VScode, charge contre modèle réactif…<br>Keynote Devoxx<br><a href="https://docs.oracle.com/fr-ca/iaas/nosql-database/doc/using-visual-studio-code-extension-development.html
">https://docs.oracle.com/fr-ca/iaas/nosql-database/doc/using-visual-studio-code-extension-development.html<br></a>https://twitter.com/Devoxx/status/1709492804391489713</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:18:50 Metabase 47<br><a href="https://twitter.com/metabase/status/1704161194032943593">https://twitter.com/metabase/status/1704161194032943593</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:20:20 Scala3 - Play en RC 2.9.0<br><a href="https://github.com/playframework/playframework/releases/tag/2.9.0-RC2">https://github.com/playframework/playframework/releases/tag/2.9.0-RC2</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:25 Introducing runes<br><a href="https://svelte.dev/blog/runes">https://svelte.dev/blog/runes</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:50 Servo web rendering engine joins Linux Foundation Europe<br><a href="https://linuxfoundation.eu/newsroom/servo-web-rendering-engine-joins-linux-foundation-europe">https://linuxfoundation.eu/newsroom/servo-web-rendering-engine-joins-linux-foundation-europe</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:33:00 des cours de Rust avec Clever sur Twitch !<br><a href="https://twitter.com/clever_cloudFR/status/1703759381899227199">https://twitter.com/clever_cloudFR/status/1703759381899227199</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:35:55 Photoshop en version WEB grace à Webassembly<br><a href="https://twitter.com/sethshaw/status/1707511072016810069?s=46&amp;t=ymswwB3NV0qGUdT1M-dGZg">https://twitter.com/sethshaw/status/1707511072016810069?s=46&amp;t=ymswwB3NV0qGUdT1M-dGZg</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:20 Open core legacy patcher prolonge la vie des vieux Macs<br><a href="https://dortania.github.io/OpenCore-Legacy-Patcher/
">https://dortania.github.io/OpenCore-Legacy-Patcher/<br></a><a href="https://x.com/FabriceNeuman/status/1709102672672965052?s=20">https://x.com/FabriceNeuman/status/1709102672672965052?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:45 Les algorithmes de compression concurrencés par l’IA <a href="https://www.spiria.com/fr/blogue/breves-technos/les-algorithmes-de-compression-concurrences-par-lia/">https://www.spiria.com/fr/blogue/breves-technos/les-algorithmes-de-compression-concurrences-par-lia/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:20 l'outil de l’épisode : Yazi<br><a href="https://github.com/sxyazi/yazi
">https://github.com/sxyazi/yazi<br></a>Et en bonus : rust player<br><a href="https://github.com/Kingtous/RustPlayer">https://github.com/Kingtous/RustPlayer</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:42 La musique de fin<br>Joe Henry - "Lead Me On" (Live at WFUV)<br><a href="https://www.youtube.com/watch?v=usRwlP4OkEk">https://www.youtube.com/watch?v=usRwlP4OkEk</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/10/92.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="92" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/10/92.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/10/92-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/10/92-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/10/92-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/10/92-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/10/92-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/uh17WpV8HLo">Voir sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p><br>Animé par Quentin ADAM </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>avec la participation de :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Sun Tan - @__sunix_</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Horacio Gonzalez - @LostInBrittany</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Sebastien Blanc - @sebi2706</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 5 octobre 2023 </p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Timecodes et liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:02:45 Rust pour Intellij devient payant<br><a href="https://x.com/rustrover/status/1701944316573204945?s=46&amp;t=Cd-Q3SyiffHQkyTKLC-sFg">https://x.com/rustrover/status/1701944316573204945?s=46&amp;t=Cd-Q3SyiffHQkyTKLC-sFg</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:07:14 Comment rattraper ses erreurs dans Git avec Dangit<br><a href="https://dangitgit.com/en">https://dangitgit.com/en</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:07:53 Une proposition de standardisation des emoji dans Git : codification ou source d’inspiration ?<br><a href="https://gitmoji.dev">https://gitmoji.dev</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:11:20 Nouveau projet exemple de Clever Cloud en .NET<br><a href="https://x.com/waxzce/status/1709558406405644785?s=20">https://x.com/waxzce/status/1709558406405644785?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:13:15 Visual Code Studio - nouvelle version 1.82<br><a href="https://twitter.com/davlgd/status/1699886746937540814">https://twitter.com/davlgd/status/1699886746937540814</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:15:50 Oracle prépare un plugin Java pour VScode, charge contre modèle réactif…<br>Keynote Devoxx<br><a href="https://docs.oracle.com/fr-ca/iaas/nosql-database/doc/using-visual-studio-code-extension-development.html
">https://docs.oracle.com/fr-ca/iaas/nosql-database/doc/using-visual-studio-code-extension-development.html<br></a>https://twitter.com/Devoxx/status/1709492804391489713</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:18:50 Metabase 47<br><a href="https://twitter.com/metabase/status/1704161194032943593">https://twitter.com/metabase/status/1704161194032943593</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:20:20 Scala3 - Play en RC 2.9.0<br><a href="https://github.com/playframework/playframework/releases/tag/2.9.0-RC2">https://github.com/playframework/playframework/releases/tag/2.9.0-RC2</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:25:25 Introducing runes<br><a href="https://svelte.dev/blog/runes">https://svelte.dev/blog/runes</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:50 Servo web rendering engine joins Linux Foundation Europe<br><a href="https://linuxfoundation.eu/newsroom/servo-web-rendering-engine-joins-linux-foundation-europe">https://linuxfoundation.eu/newsroom/servo-web-rendering-engine-joins-linux-foundation-europe</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:33:00 des cours de Rust avec Clever sur Twitch !<br><a href="https://twitter.com/clever_cloudFR/status/1703759381899227199">https://twitter.com/clever_cloudFR/status/1703759381899227199</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:35:55 Photoshop en version WEB grace à Webassembly<br><a href="https://twitter.com/sethshaw/status/1707511072016810069?s=46&amp;t=ymswwB3NV0qGUdT1M-dGZg">https://twitter.com/sethshaw/status/1707511072016810069?s=46&amp;t=ymswwB3NV0qGUdT1M-dGZg</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:41:20 Open core legacy patcher prolonge la vie des vieux Macs<br><a href="https://dortania.github.io/OpenCore-Legacy-Patcher/
">https://dortania.github.io/OpenCore-Legacy-Patcher/<br></a><a href="https://x.com/FabriceNeuman/status/1709102672672965052?s=20">https://x.com/FabriceNeuman/status/1709102672672965052?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:45 Les algorithmes de compression concurrencés par l’IA <a href="https://www.spiria.com/fr/blogue/breves-technos/les-algorithmes-de-compression-concurrences-par-lia/">https://www.spiria.com/fr/blogue/breves-technos/les-algorithmes-de-compression-concurrences-par-lia/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:20 l'outil de l’épisode : Yazi<br><a href="https://github.com/sxyazi/yazi
">https://github.com/sxyazi/yazi<br></a>Et en bonus : rust player<br><a href="https://github.com/Kingtous/RustPlayer">https://github.com/Kingtous/RustPlayer</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:48:42 La musique de fin<br>Joe Henry - "Lead Me On" (Live at WFUV)<br><a href="https://www.youtube.com/watch?v=usRwlP4OkEk">https://www.youtube.com/watch?v=usRwlP4OkEk</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
					<wfw:commentRss>https://www.clever.cloud/podcast/des-machines-virtuelles-photoshopent-leurs-emojis-en-ligne-pour-passer-sur-twitch/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_92.mp3" length="72481882" type="audio/mpeg" />

			</item>
		<item>
		<title>86 &#8211; Les IA hallucinées se ferment à la source</title>
		<link>https://www.clever.cloud/podcast/86-les-ia-hallucinees-se-ferment-a-la-source/</link>
		
		<dc:creator><![CDATA[Julien Durillon]]></dc:creator>
		<pubDate>Fri, 07 Apr 2023 17:31:46 +0000</pubDate>
				<category><![CDATA[CopilotX]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[GPT4]]></category>
		<category><![CDATA[LLaMA]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=7915</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/04/86-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="86 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/04/86-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:gallery {"columns":4,"linkTo":"none"} -->
<figure class="wp-block-gallery has-nested-images columns-4 is-cropped"><!-- wp:image {"id":713,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2021/03/julien-durillon-447x447.jpg" alt="julien_durillon" class="wp-image-713"/><figcaption class="wp-element-caption">Julien Durillon</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":3038,"sizeSlug":"large","linkDestination":"none","className":"is-style-default"} -->
<figure class="wp-block-image size-large is-style-default"><img src="https://cdn.clever-cloud.com/uploads/2021/08/T02QK4NGF-U01N501SY4B-984818fddf3b-512-447x447.png" alt="emmanuel_bosquet" class="wp-image-3038"/><figcaption class="wp-element-caption">Emmanuel Bosquet</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":7898,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="https://cdn.clever-cloud.com/uploads/2023/03/guillaumeassier400x400.jpeg" alt="Guillaume_Assier" class="wp-image-7898"/><figcaption class="wp-element-caption">Guillaume Assier</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":9785,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="https://cdn.clever-cloud.com/uploads/2023/03/jeromerouaix.jpg" alt="une photo de Jérôme Rouaix" class="wp-image-9785"/><figcaption class="wp-element-caption">Jérôme Rouaix</figcaption></figure>
<!-- /wp:image --></figure>
<!-- /wp:gallery -->

<!-- wp:paragraph -->
<p>Dans cet épisode très ouvert il est question de Rust qui est à la base de wymmo.com (le portail de notre invité), du ralentissement du secteur, de Docker pousse l'open source vers le payant et d'histoire de nos machines. Nous passons un moment à parler d'IA : annonce de GPT4, CopilotX, LLaMA avant de présenter quelques outils et de finir en musique.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Avec la participation de <a href="https://twitter.com/juuduu">@<em>juuduu</em></a> <br><a href="https://twitter.com/emmanuelbosquet"><em>Emmanuel Bosquet (@EmmanuelBosquet) / Twitter</em></a> <br><a href="https://twitter.com/guillaumeassier"><em>Guillaume Assier 🔋 (@GuillaumeAssier) / Twitter</em></a><br><a href="https://twitter.com/jrouaix"><em>jrx - Eventually Consultant - C# .. 🦀⚙️ (@jrouaix) / Twitter</em></a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 24 mars 2023.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button {"fontSize":"small"} -->
<div class="wp-block-button has-custom-font-size has-small-font-size"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/gYp3gRg3u7Y" target="_blank" rel="noreferrer noopener">Regarder sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Timecode &amp; Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 - Présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:01:27 Projet pro : <a href="https://wymmo.com/" target="_blank" rel="noreferrer noopener">https://wymmo.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:09:28 Et sinon le ralentissement dans notre secteur, vous le ressentez ? <br><a href="https://www.lesechos.fr/start-up/next40-vivatech/payfit-se-separe-de-20-de-ses-effectifs-1910932" target="_blank" rel="noreferrer noopener">https://www.lesechos.fr/start-up/next40-vivatech/payfit-se-separe-de-20-de-ses-effectifs-1910932<br></a><a href="https://emploi.developpez.com/actu/342624/Y-a-t-il-une-bulle-dans-l-industrie-Tech-et-est-elle-en-train-d-eclater-Les-donnees-sur-les-offres-d-emploi-le-suggerent-mais-les-experts-estiment-que-c-est-le-moment-ideal-pour-y-travailler/" target="_blank" rel="noreferrer noopener">https://emploi.developpez.com/actu/342624/Y-a-t-il-une-bulle-dans-l-industrie-Tech-et-est-elle-en-train-d-eclater-Les-donnees-sur-les-offres-d-emploi-le-suggerent-mais-les-experts-estiment-que-c-est-le-moment-ideal-pour-y-travailler/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:21:18 : Docker pousse l’open source vers un modèle payant<br><a href="https://blog.alexellis.io/docker-is-deleting-open-source-images/" target="_blank" rel="noreferrer noopener">https://blog.alexellis.io/docker-is-deleting-open-source-images/<br></a>Faut faire du blé… devenir rentable<br>0€ −&gt; 420€/an<br>Changement dans un mois.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:58 Un peu d'histoire (en podcast), d'où viennent nos machines (Jérôme):</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li><a href="https://techcafe.fr/steampunk-cafe-machine-de-babbage-et-autres-machines-a-vapeur/" target="_blank" rel="noreferrer noopener">https://techcafe.fr/steampunk-cafe-machine-de-babbage-et-autres-machines-a-vapeur/<br></a>Métiers à tisser, cartes perforés, ordinateur à vapeur et machines analogiques (beaucoup de liens en description)</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://techcafe.fr/supplement-steampunk-cafe-2-langleterre-du-colossus-a-lamstrad/" target="_blank" rel="noreferrer noopener">https://techcafe.fr/supplement-steampunk-cafe-2-langleterre-du-colossus-a-lamstrad/<br></a>La suite de l'Histoire et premiers transistors<br>00:34:04 : Eloge duclavier BEPO<br><a href="https://bepo.fr/wiki/Accueil" target="_blank" rel="noreferrer noopener">https://bepo.fr/wiki/Accueil<br></a>Klavaro : <a href="https://klavaro.sourceforge.io/fr/index.html" target="_blank" rel="noreferrer noopener">https://klavaro.sourceforge.io/fr/index.html</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:38:40 Open AI ne sera plus “open” et annonce GPT-4 (Jérôme)<br><a href="https://openai.com/research/gpt-4" target="_blank" rel="noreferrer noopener">https://openai.com/research/gpt-4<br></a><a href="https://www.theverge.com/2023/3/15/23640180/openai-gpt-4-launch-closed-research-ilya-sutskever-interview" target="_blank" rel="noreferrer noopener">https://www.theverge.com/2023/3/15/23640180/openai-gpt-4-launch-closed-research-ilya-sutskever-interview<br></a>- L'IA passe de l'ère de la recherche à l'ère du secret<br>- "Open" AI n'a jamais si mal porté son nom</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:44:34 : CopilotX<br><a href="https://github.blog/2023-03-22-github-copilot-x-the-ai-powered-developer-experience/ (Emmanuel)" target="_blank" rel="noreferrer noopener">https://github.blog/2023-03-22-github-copilot-x-the-ai-powered-developer-experience/ (Emmanuel)</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:21 : Comment fonctionnent les IA tels GPT-x<br><a href="https://www.joshwcomeau.com/blog/the-end-of-frontend-development/" target="_blank" rel="noreferrer noopener">https://www.joshwcomeau.com/blog/the-end-of-frontend-development/ </a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:57:56 : Demandes DMCA des dépôts basés sur le modèle LLaMA (Large Language Model Meta AI) par Meta<br>Lama-dl + forks<br><a href="https://twitter.com/theshawwn/status/1638925249709240322" target="_blank" rel="noreferrer noopener">https://twitter.com/theshawwn/status/1638925249709240322<br></a><a href="https://github.com/github/dmca/blob/master/2023/03/2023-03-21-meta.md" target="_blank" rel="noreferrer noopener">https://github.com/github/dmca/blob/master/2023/03/2023-03-21-meta.md<br></a><a href="https://twitter.com/Dorialexander/status/1638992849516544000?s=20" target="_blank" rel="noreferrer noopener">https://twitter.com/Dorialexander/status/1638992849516544000?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:00:29 : Vol de compte meta via une extension chrome qui surfe sur la vague chatgpt<br><a href="https://thehackernews.com/2023/03/fake-chatgpt-chrome-browser-extension.html" target="_blank" rel="noreferrer noopener">https://thehackernews.com/2023/03/fake-chatgpt-chrome-browser-extension.html</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:02:26 : Support en alpha des plugins dans chatgpt qui va améliorer son expérience produit <br><a href="https://openai.com/blog/chatgpt-plugins" target="_blank" rel="noreferrer noopener">https://openai.com/blog/chatgpt-plugins</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:04:00 : Codegenr, l’outil de la semaine<br><a href="https://github.com/eventuallyconsultant/codegenr" target="_blank" rel="noreferrer noopener">https://github.com/eventuallyconsultant/codegenr</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:11:56 : Musique de fin - Sound of science - Portal<br><a href="https://www.youtube.com/watch?v=l0xh4qopQpk" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=l0xh4qopQpk</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Si les dés en avait décidé autrement, il y aurait pu avoir :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Julien : <a href="https://www.youtube.com/watch?v=BtxTSXhZbOQ" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=BtxTSXhZbOQ</a> Ma’agalim, Idan Raichel</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Guillaume : <a href="https://www.youtube.com/watch?v=hVvx8cZcklQ" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=hVvx8cZcklQ</a> When You’re Around, Oliver Tree</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Jérôme : <a href="https://www.youtube.com/watch?v=6AbssmQ7EPI&amp;list=PLD27AC29593FA45A7&amp;index=18" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=6AbssmQ7EPI&amp;list=PLD27AC29593FA45A7&amp;index=18</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/04/86-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="86 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/04/86-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/04/86-1-1368x770.jpg 1368w" sizes="auto, (max-width: 1920px) 100vw, 1920px" /></p><!-- wp:gallery {"columns":4,"linkTo":"none"} -->
<figure class="wp-block-gallery has-nested-images columns-4 is-cropped"><!-- wp:image {"id":713,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2021/03/julien-durillon-447x447.jpg" alt="julien_durillon" class="wp-image-713"/><figcaption class="wp-element-caption">Julien Durillon</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":3038,"sizeSlug":"large","linkDestination":"none","className":"is-style-default"} -->
<figure class="wp-block-image size-large is-style-default"><img src="https://cdn.clever-cloud.com/uploads/2021/08/T02QK4NGF-U01N501SY4B-984818fddf3b-512-447x447.png" alt="emmanuel_bosquet" class="wp-image-3038"/><figcaption class="wp-element-caption">Emmanuel Bosquet</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":7898,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="https://cdn.clever-cloud.com/uploads/2023/03/guillaumeassier400x400.jpeg" alt="Guillaume_Assier" class="wp-image-7898"/><figcaption class="wp-element-caption">Guillaume Assier</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":9785,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="https://cdn.clever-cloud.com/uploads/2023/03/jeromerouaix.jpg" alt="une photo de Jérôme Rouaix" class="wp-image-9785"/><figcaption class="wp-element-caption">Jérôme Rouaix</figcaption></figure>
<!-- /wp:image --></figure>
<!-- /wp:gallery -->

<!-- wp:paragraph -->
<p>Dans cet épisode très ouvert il est question de Rust qui est à la base de wymmo.com (le portail de notre invité), du ralentissement du secteur, de Docker pousse l'open source vers le payant et d'histoire de nos machines. Nous passons un moment à parler d'IA : annonce de GPT4, CopilotX, LLaMA avant de présenter quelques outils et de finir en musique.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Avec la participation de <a href="https://twitter.com/juuduu">@<em>juuduu</em></a> <br><a href="https://twitter.com/emmanuelbosquet"><em>Emmanuel Bosquet (@EmmanuelBosquet) / Twitter</em></a> <br><a href="https://twitter.com/guillaumeassier"><em>Guillaume Assier 🔋 (@GuillaumeAssier) / Twitter</em></a><br><a href="https://twitter.com/jrouaix"><em>jrx - Eventually Consultant - C# .. 🦀⚙️ (@jrouaix) / Twitter</em></a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Épisode enregistré le 24 mars 2023.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button {"fontSize":"small"} -->
<div class="wp-block-button has-custom-font-size has-small-font-size"><a class="wp-block-button__link wp-element-button" href="https://youtu.be/gYp3gRg3u7Y" target="_blank" rel="noreferrer noopener">Regarder sur Youtube</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:paragraph -->
<p>👋  Venez discuter avec nous sur <a href="https://twitter.com/clever_cloudFR" target="_blank" rel="noreferrer noopener">@clever_cloudFR</a> pour nous dire ce que vous avez pensé de ce nouvel épisode.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>➡️  Pour découvrir ou réécouter d’anciens épisodes&nbsp;<a href="https://www.clever.cloud/fr/podcast/">c’est par ici</a>&nbsp;!</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Timecode &amp; Liens</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>00:00:16 - Présentation des participants</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:01:27 Projet pro : <a href="https://wymmo.com/" target="_blank" rel="noreferrer noopener">https://wymmo.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:09:28 Et sinon le ralentissement dans notre secteur, vous le ressentez ? <br><a href="https://www.lesechos.fr/start-up/next40-vivatech/payfit-se-separe-de-20-de-ses-effectifs-1910932" target="_blank" rel="noreferrer noopener">https://www.lesechos.fr/start-up/next40-vivatech/payfit-se-separe-de-20-de-ses-effectifs-1910932<br></a><a href="https://emploi.developpez.com/actu/342624/Y-a-t-il-une-bulle-dans-l-industrie-Tech-et-est-elle-en-train-d-eclater-Les-donnees-sur-les-offres-d-emploi-le-suggerent-mais-les-experts-estiment-que-c-est-le-moment-ideal-pour-y-travailler/" target="_blank" rel="noreferrer noopener">https://emploi.developpez.com/actu/342624/Y-a-t-il-une-bulle-dans-l-industrie-Tech-et-est-elle-en-train-d-eclater-Les-donnees-sur-les-offres-d-emploi-le-suggerent-mais-les-experts-estiment-que-c-est-le-moment-ideal-pour-y-travailler/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:21:18 : Docker pousse l’open source vers un modèle payant<br><a href="https://blog.alexellis.io/docker-is-deleting-open-source-images/" target="_blank" rel="noreferrer noopener">https://blog.alexellis.io/docker-is-deleting-open-source-images/<br></a>Faut faire du blé… devenir rentable<br>0€ −&gt; 420€/an<br>Changement dans un mois.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:58 Un peu d'histoire (en podcast), d'où viennent nos machines (Jérôme):</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li><a href="https://techcafe.fr/steampunk-cafe-machine-de-babbage-et-autres-machines-a-vapeur/" target="_blank" rel="noreferrer noopener">https://techcafe.fr/steampunk-cafe-machine-de-babbage-et-autres-machines-a-vapeur/<br></a>Métiers à tisser, cartes perforés, ordinateur à vapeur et machines analogiques (beaucoup de liens en description)</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li><a href="https://techcafe.fr/supplement-steampunk-cafe-2-langleterre-du-colossus-a-lamstrad/" target="_blank" rel="noreferrer noopener">https://techcafe.fr/supplement-steampunk-cafe-2-langleterre-du-colossus-a-lamstrad/<br></a>La suite de l'Histoire et premiers transistors<br>00:34:04 : Eloge duclavier BEPO<br><a href="https://bepo.fr/wiki/Accueil" target="_blank" rel="noreferrer noopener">https://bepo.fr/wiki/Accueil<br></a>Klavaro : <a href="https://klavaro.sourceforge.io/fr/index.html" target="_blank" rel="noreferrer noopener">https://klavaro.sourceforge.io/fr/index.html</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:38:40 Open AI ne sera plus “open” et annonce GPT-4 (Jérôme)<br><a href="https://openai.com/research/gpt-4" target="_blank" rel="noreferrer noopener">https://openai.com/research/gpt-4<br></a><a href="https://www.theverge.com/2023/3/15/23640180/openai-gpt-4-launch-closed-research-ilya-sutskever-interview" target="_blank" rel="noreferrer noopener">https://www.theverge.com/2023/3/15/23640180/openai-gpt-4-launch-closed-research-ilya-sutskever-interview<br></a>- L'IA passe de l'ère de la recherche à l'ère du secret<br>- "Open" AI n'a jamais si mal porté son nom</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:44:34 : CopilotX<br><a href="https://github.blog/2023-03-22-github-copilot-x-the-ai-powered-developer-experience/ (Emmanuel)" target="_blank" rel="noreferrer noopener">https://github.blog/2023-03-22-github-copilot-x-the-ai-powered-developer-experience/ (Emmanuel)</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:49:21 : Comment fonctionnent les IA tels GPT-x<br><a href="https://www.joshwcomeau.com/blog/the-end-of-frontend-development/" target="_blank" rel="noreferrer noopener">https://www.joshwcomeau.com/blog/the-end-of-frontend-development/ </a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:57:56 : Demandes DMCA des dépôts basés sur le modèle LLaMA (Large Language Model Meta AI) par Meta<br>Lama-dl + forks<br><a href="https://twitter.com/theshawwn/status/1638925249709240322" target="_blank" rel="noreferrer noopener">https://twitter.com/theshawwn/status/1638925249709240322<br></a><a href="https://github.com/github/dmca/blob/master/2023/03/2023-03-21-meta.md" target="_blank" rel="noreferrer noopener">https://github.com/github/dmca/blob/master/2023/03/2023-03-21-meta.md<br></a><a href="https://twitter.com/Dorialexander/status/1638992849516544000?s=20" target="_blank" rel="noreferrer noopener">https://twitter.com/Dorialexander/status/1638992849516544000?s=20</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:00:29 : Vol de compte meta via une extension chrome qui surfe sur la vague chatgpt<br><a href="https://thehackernews.com/2023/03/fake-chatgpt-chrome-browser-extension.html" target="_blank" rel="noreferrer noopener">https://thehackernews.com/2023/03/fake-chatgpt-chrome-browser-extension.html</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:02:26 : Support en alpha des plugins dans chatgpt qui va améliorer son expérience produit <br><a href="https://openai.com/blog/chatgpt-plugins" target="_blank" rel="noreferrer noopener">https://openai.com/blog/chatgpt-plugins</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:04:00 : Codegenr, l’outil de la semaine<br><a href="https://github.com/eventuallyconsultant/codegenr" target="_blank" rel="noreferrer noopener">https://github.com/eventuallyconsultant/codegenr</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:11:56 : Musique de fin - Sound of science - Portal<br><a href="https://www.youtube.com/watch?v=l0xh4qopQpk" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=l0xh4qopQpk</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Si les dés en avait décidé autrement, il y aurait pu avoir :</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Julien : <a href="https://www.youtube.com/watch?v=BtxTSXhZbOQ" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=BtxTSXhZbOQ</a> Ma’agalim, Idan Raichel</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Guillaume : <a href="https://www.youtube.com/watch?v=hVvx8cZcklQ" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=hVvx8cZcklQ</a> When You’re Around, Oliver Tree</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Jérôme : <a href="https://www.youtube.com/watch?v=6AbssmQ7EPI&amp;list=PLD27AC29593FA45A7&amp;index=18" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=6AbssmQ7EPI&amp;list=PLD27AC29593FA45A7&amp;index=18</a></li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->]]></content:encoded>
					
		
		<enclosure url="https://assets.clever-cloud.com/podcast/fr/Message_a_caractere_informatique_86.mp3" length="107341898" type="audio/mpeg" />

			</item>
	</channel>
</rss>
