<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Cedric Sebastian</title>
    <description>The latest articles on DEV Community by Cedric Sebastian (@cedsbstn).</description>
    <link>https://dev.to/cedsbstn</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3313805%2F7c968938-53ec-4b23-8092-bc8d6a86cd1a.jpg</url>
      <title>DEV Community: Cedric Sebastian</title>
      <link>https://dev.to/cedsbstn</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cedsbstn"/>
    <language>en</language>
    <item>
      <title>AlphaEvolve: Evaluator Harnesses, JAX, and the Boundaries of Autonomous Algorithm Discovery</title>
      <dc:creator>Cedric Sebastian</dc:creator>
      <pubDate>Tue, 01 Sep 2026 02:23:36 +0000</pubDate>
      <link>https://dev.to/gdg/alphaevolve-evaluator-harnesses-jax-and-the-boundaries-of-autonomous-algorithm-discovery-11b8</link>
      <guid>https://dev.to/gdg/alphaevolve-evaluator-harnesses-jax-and-the-boundaries-of-autonomous-algorithm-discovery-11b8</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;AlphaEvolve shows that LLM-guided evolutionary search can produce improved algorithms when candidate quality can be evaluated automatically. Its limits reveal an equally important lesson: an autonomous search system can only optimize for what its evaluator can recognize.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fsqwlakosy5xalpyl4g80.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fsqwlakosy5xalpyl4g80.jpeg" width="800" height="447"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In 2025, Google DeepMind reported that AlphaEvolve found a procedure for multiplying two 4 × 4 complex-valued matrices with 48 scalar multiplications, one fewer than two recursive levels of Strassen’s method. The one-multiplication reduction made the headline. The search loop that found it explains why the result matters beyond matrix multiplication.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Now, we will explore AlphaEvolve to better understand it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  What is AlphaEvolve?
&lt;/h4&gt;

&lt;p&gt;AlphaEvolve is an autonomous evolutionary AI coding agent developed by Google DeepMind that combines language-model proposals with evolutionary search. It uses two of Google’s frontier Gemini models in complementary roles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gemini Flash generates high-throughput proposals, expanding the breadth of ideas explored.&lt;/li&gt;
&lt;li&gt;Gemini Pro adds greater depth through occasional suggestions from the more capable model.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The paper does not disclose the exact sampling mixture.&lt;/p&gt;

&lt;p&gt;AlphaEvolve illustrates how AI has evolved from producing generic, repetitive output to building advanced systems that pair large language models (LLMs) with evolutionary-search harnesses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The word “autonomous” needs a clear boundary.&lt;/strong&gt; Humans define the problem, provide the initial program and evaluation code, supply optional context, and mark the code regions that AlphaEvolve may modify. The system then conducts a sustained search within those constraints. This goes well beyond asking a model for a single answer, but it does not make AlphaEvolve an independent scientist who chooses questions or standards of evidence.&lt;/p&gt;

&lt;p&gt;AlphaEvolve extends &lt;a href="https://doi.org/10.1038/s41586-023-06924-6" rel="noopener noreferrer"&gt;FunSearch&lt;/a&gt;, DeepMind’s earlier system for evolving a selected function within a human-written program. AlphaEvolve can modify much larger regions of code, optimize multiple scores simultaneously, and run evaluations for hours in parallel. The expansion is substantial, but the underlying pattern is inherited: language-model variation followed by executable selection.&lt;/p&gt;

&lt;h4&gt;
  
  
  How does it work?
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2A_d4a19AJ19mAZ43g" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2A_d4a19AJ19mAZ43g" width="1024" height="640"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;AlphaEvolve advanced outline. The diagram illustrates how its process works as explained below.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The loop could be demonstrated like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;User input&lt;/strong&gt;
A user supplies an existing algorithm or program, evaluation code, and optional context about the problem.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompt sampler&lt;/strong&gt;
A prompt sampler then selects previous candidates from a program database and gives them to the Gemini models for revision.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gemini models&lt;/strong&gt;
Create new candidates by proposing code changes, usually returning patches instead of rewriting the whole program.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Evaluator pool&lt;/strong&gt;
Multiple candidates can be evaluated in parallel. Inexpensive checks can filter out invalid or poor candidates before more costly evaluations are run. The evaluation code and the environment in which it runs together form the evaluator harness. This harness determines how each candidate is executed, tested, timed, and scored.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Program database&lt;/strong&gt;
Candidates that receive strong evaluation scores are returned to the database, where they can be chosen again in further generations. The model provides variation by changing the code, while the evaluator provides the selection pressure that determines which changes remain.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AlphaEvolve generates and modifies programs, runs them through an automated evaluator, retains promising candidates, and uses their performance to guide the next generation. This process lets the system evaluate far more candidate programs than we could explore manually on a scale humans can’t examine without sacrificing accuracy, although the reliability of that search still depends on what the evaluator measures.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AlphaEvolve revolutionizes how we work by letting us formulate problems, design evaluators to test them, and constrain the search space. The evolutionary system decides which candidates survive, and human researchers decide whether the resulting score reflects meaningful progress. The evaluator is only one part of the system &lt;strong&gt;.&lt;/strong&gt; In other words, the evaluator matters, but it’s only one part of a much larger human-guided system. AlphaEvolve’s limited ablation studies suggest that its performance depends on several factors, including model capability, evolutionary selection, prompt adaptation, available context, and how much of the code the system is allowed to modify. While the overall loop may appear straightforward, it is supported by several interacting components that surprisingly make the system more complex in practice (Novikov et al., 2025). For the results to be reliable, these mechanisms also need to be paired with a well-designed evaluator.&lt;/p&gt;

&lt;h4&gt;
  
  
  Results with evidence level distinction
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;AlphaEvolve’s public record contains three kinds of evidence: artifacts outsiders can verify, production measurements reported by Google, and later work that extends an artifact without reproducing the original search.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Keeping these categories separate prevents a verified mathematical construction from giving proprietary deployment claims more certainty than they warrant.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Demonstrated and checkable.&lt;/strong&gt; DeepMind released an exact rank-48 decomposition and &lt;a href="https://github.com/google-deepmind/alphaevolve_results" rel="noopener noreferrer"&gt;verification code&lt;/a&gt; for multiplying 4 × 4 matrices over complex coefficients. Here, rank counts the bilinear scalar multiplications in the construction. It does not measure wall-clock speed. Additions, memory traffic, numerical stability, coefficient arithmetic, and target hardware can outweigh the benefit of saving one multiplication.&lt;/p&gt;

&lt;p&gt;DeepMind initially described the result as the first improvement in 56 years over the complex rank-49 baseline associated with Strassen’s 1969 method. The publication record complicates that priority claim. In 2024, Kaporin &lt;a href="https://doi.org/10.1134/S0965542524701021" rel="noopener noreferrer"&gt;reported a numerical complex rank-48 scheme&lt;/a&gt;. AlphaEvolve’s contribution is better described as an exact, publicly checkable construction found by the system. Dumas et al. (2025) then &lt;a href="https://arxiv.org/abs/2506.13242" rel="noopener noreferrer"&gt;transformed that artifact into a 48-multiplication algorithm with rational coefficients&lt;/a&gt;. Their work corroborates and extends the construction, but it does not reproduce DeepMind’s search system, which remains closed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer-reported.&lt;/strong&gt; Google reports that an AlphaEvolve scheduling heuristic, first validated in simulation and then deployed, recovers an average of 0.7% of its worldwide compute resources. The white paper also reports an average 23% speedup across evaluated Pallas matrix-multiplication kernel shapes and about a 1% reduction in Gemini training time. For the kernel study, realistic input shapes were divided between optimization and evaluation sets and measured on TPUs. This provides a useful generalization check, but the workloads, raw timing records, and production environment remain proprietary. These figures are therefore first-party measurements rather than independently audited results.&lt;/p&gt;

&lt;p&gt;The same qualification applies to DeepMind’s report that AlphaEvolve matched the best-known construction on roughly 75% of more than 50 mathematical problems and improved on it in roughly 20%. The public report does not fully document the problem-selection protocol or provide a precise denominator. In a &lt;a href="https://deepmind.google/blog/alphaevolve-impact/" rel="noopener noreferrer"&gt;May 2026 update&lt;/a&gt;, DeepMind reported that AlphaEvolve had become a regular tool for designing next-generation TPUs and had produced a Spanner heuristic that cut write amplification by 20%. These claims came after the 2025 white paper and, like the earlier figures, have not been independently audited.&lt;/p&gt;

&lt;h4&gt;
  
  
  System Constraints &amp;amp; Bottlenecks
&lt;/h4&gt;

&lt;p&gt;AlphaEvolve’s main boundary is automated evaluability. Tasks that require manual experiments, subjective judgment, or evidence unavailable to the harness do not fit the current loop. Even machine-gradeable tasks can fail in quieter ways. A proxy may reward the wrong behavior, public tests may invite overfitting, omitted edge cases may hide invalid programs, and noisy timing may favor a candidate that will not survive a different device or compiler version. Multi-objective scores add another judgment call because their weights determine what the search may sacrifice.&lt;/p&gt;

&lt;p&gt;The concern is empirical, not merely philosophical. In a small &lt;a href="https://arxiv.org/abs/2605.15221" rel="noopener noreferrer"&gt;2026 circle-packing preprint&lt;/a&gt; (Ishibashi et al., 2026) found generated programs that exploited weaknesses in the evaluator and reported more such hacks from the more capable model they tested. The study examined another harness on one benchmark, so it is evidence of a general failure mode, not an audit of AlphaEvolve’s published results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A stronger harness would combine exact validity checks where possible with hidden holdouts, adversarial cases, repeated measurements, cross-device tests, versioned environments, independent reimplementation, and human inspection of finalists.&lt;/strong&gt; These controls raise costs. That cost limits how many candidates can be evaluated and which problems are economically searchable. Model quality, context, representation, compute budget, and editable scope remain bottlenecks even when the evaluator is sound.&lt;/p&gt;

&lt;h4&gt;
  
  
  Human Adaptation, Decision, and Judgement
&lt;/h4&gt;

&lt;p&gt;Many people are afraid of AI because its capabilities have advanced far faster than expected, but fear will never help us. We should adapt, learn, and use AI as a collaborative brainstorming partner that helps us think better and strengthen our arguments. One-sided perspectives can create new mistakes even as we try to solve existing ones.&lt;/p&gt;

&lt;p&gt;AlphaEvolve makes this distinction especially clear. Human judgment enters both before and after the search. Researchers choose the objective, decide what code may change, construct the evaluation environment, and set acceptable constraints and tradeoffs. Once the search is complete, people still have to determine whether the winning program is valid, robust, deployable, and scientifically meaningful, while considering the consequences of putting it into practice. AlphaEvolve itself relies on automated evaluators to score proposed programs, making human choices about objectives and evaluation central to what the system ultimately discovers.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;A benchmark score cannot make those decisions. The evidence therefore supports treating AlphaEvolve as a research instrument that operates under human scientific judgment, not as a replacement for it.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Its value lies in expanding the range and persistence of algorithmic search, while responsibility for defining the problem, interpreting the results, and deciding what counts as a meaningful discovery remains with people.&lt;/p&gt;

&lt;h3&gt;
  
  
  What JAX changes
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;JAX can reduce the cost of repeated numerical evaluation. It cannot determine whether the evaluator represents the right scientific objective.&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
That distinction separates AlphaEvolve’s documented JAX use from broader hypotheses about what the pairing might eventually enable.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;JAX already appears in the published work. AlphaEvolve used JAX and Optax while evolving tensor-decomposition search code, and it optimized a tiling heuristic for a Pallas kernel used in Gemini training. &lt;a href="https://docs.jax.dev/en/latest/401/pallas.html" rel="noopener noreferrer"&gt;Pallas&lt;/a&gt; is an experimental JAX kernel language that gives programmers fine-grained control over code for GPUs and TPUs, including data movement through fast on-chip memory.&lt;/p&gt;

&lt;p&gt;Three JAX transformations are especially relevant:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://docs.jax.dev/en/latest/101/transformations.html" rel="noopener noreferrer"&gt;jax.jit&lt;/a&gt; traces and compiles compatible numerical functions for a target device. Repeated calls can reuse the compiled executable when input types and relevant static arguments remain compatible.&lt;/li&gt;
&lt;li&gt;jax.vmap maps one function across a batch axis. It can batch evaluations over inputs or parameter settings, but it does not merge structurally different candidate programs into one computation.&lt;/li&gt;
&lt;li&gt;jax.grad differentiates scalar-output functions. It could support continuous optimization inside a candidate when the inner objective is differentiable, but it does not differentiate AlphaEvolve's discrete outer search.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://docs.jax.dev/en/latest/aot.html" rel="noopener noreferrer"&gt;During compilation&lt;/a&gt;, JAX traces a compatible Python function into an internal representation called a jaxpr, lowers it to StableHLO, and passes the lowered program to XLA to produce an executable for a CPU, GPU, or TPU. A compiler intermediate representation is simply a structured form between source code and machine instructions that allows compilers to analyze and transform it.&lt;/p&gt;

&lt;p&gt;This stack makes a broader research program both feasible and practical. AlphaEvolve could propose new kernels, solver components, optimizers, or training-loop components, while JAX could compile and vectorize repeated evaluations for efficient execution on accelerators. For promising candidates, automatic differentiation could help tune internal parameters by supplying gradients to an optimizer, provided the inner objective is differentiable and scalar-valued. &lt;strong&gt;This remains a hypothesis about how the search space could be expanded, not a demonstrated path toward general intelligence.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The economics depend on how similar the candidates are. Repeated evaluations of the same jitted candidate can amortize compilation costs, while changes to the code, shapes, dtypes, or static parameters may require new tracing and compilation. Structurally heterogeneous programs may therefore erase the throughput advantage. A credible experiment would also evaluate correctness, speed, memory use, numerical stability, and behavior across unseen data, shapes, devices, and compiler versions.&lt;/p&gt;

&lt;p&gt;AlphaEvolve combined with JAX could broaden the practical search space for numerical components when compilation costs can be amortized. That same acceleration makes evaluator quality even more consequential:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A flawed harness can reward the wrong behavior at a greater scale.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This strengthens the case for automated algorithm search, but it is not evidence of autonomous science without human control.&lt;/p&gt;

&lt;h3&gt;
  
  
  References
&lt;/h3&gt;

&lt;p&gt;AlphaEvolve Team. (2025, May 14). &lt;em&gt;AlphaEvolve: A Gemini-powered coding agent for designing advanced algorithms&lt;/em&gt;. Google DeepMind. &lt;a href="https://deepmind.google/blog/alphaevolve-a-gemini-powered-coding-agent-for-designing-advanced-algorithms/" rel="noopener noreferrer"&gt;https://deepmind.google/blog/alphaevolve-a-gemini-powered-coding-agent-for-designing-advanced-algorithms/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AlphaEvolve Team. (2026, May 7). &lt;em&gt;AlphaEvolve: How our Gemini-powered coding agent is scaling impact across fields&lt;/em&gt;. Google DeepMind. &lt;a href="https://deepmind.google/blog/alphaevolve-impact/" rel="noopener noreferrer"&gt;https://deepmind.google/blog/alphaevolve-impact/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dumas, J.-G., Pernet, C., &amp;amp; Sedoglavic, A. (2025). &lt;em&gt;A non-commutative algorithm for multiplying 4x4 matrices using 48 non-complex multiplications&lt;/em&gt; (arXiv:2506.13242, Version 7) [Preprint]. arXiv. &lt;a href="https://doi.org/10.48550/arXiv.2506.13242" rel="noopener noreferrer"&gt;https://doi.org/10.48550/arXiv.2506.13242&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Google DeepMind. (2025). &lt;em&gt;Results of AlphaEvolve&lt;/em&gt; [Data set and computer software]. GitHub. &lt;a href="https://github.com/google-deepmind/alphaevolve_results" rel="noopener noreferrer"&gt;https://github.com/google-deepmind/alphaevolve_results&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ishibashi, Y., Yano, T., &amp;amp; Oyamada, M. (2026). &lt;em&gt;Effective harness engineering for algorithm discovery with coding agents&lt;/em&gt; (arXiv:2605.15221, Version 1) [Preprint]. arXiv. &lt;a href="https://doi.org/10.48550/arXiv.2605.15221" rel="noopener noreferrer"&gt;https://doi.org/10.48550/arXiv.2605.15221&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;JAX Authors. (n.d.-a). &lt;em&gt;Ahead-of-time lowering and compilation&lt;/em&gt;. JAX documentation. Retrieved August 29, 2026, from &lt;a href="https://docs.jax.dev/en/latest/aot.html" rel="noopener noreferrer"&gt;https://docs.jax.dev/en/latest/aot.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;JAX Authors. (n.d.-b). &lt;em&gt;Pallas: Custom kernels in JAX&lt;/em&gt;. JAX documentation. Retrieved August 29, 2026, from &lt;a href="https://docs.jax.dev/en/latest/401/pallas.html" rel="noopener noreferrer"&gt;https://docs.jax.dev/en/latest/401/pallas.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;JAX Authors. (n.d.-c). &lt;em&gt;Transformations: grad and vmap&lt;/em&gt;. JAX documentation. Retrieved August 29, 2026, from &lt;a href="https://docs.jax.dev/en/latest/101/transformations.html" rel="noopener noreferrer"&gt;https://docs.jax.dev/en/latest/101/transformations.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Kaporin, I. E. (2024). Finding complex-valued solutions of Brent equations using nonlinear least squares. &lt;em&gt;Computational Mathematics and Mathematical Physics, 64&lt;/em&gt;(9), 1881–1891. &lt;a href="https://doi.org/10.1134/S0965542524701021" rel="noopener noreferrer"&gt;https://doi.org/10.1134/S0965542524701021&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Novikov, A., Vũ, N., Eisenberger, M., Dupont, E., Huang, P.-S., Wagner, A. Z., Shirobokov, S., Kozlovskii, B., Ruiz, F. J. R., Mehrabian, A., Kumar, M. P., See, A., Chaudhuri, S., Holland, G., Davies, A., Nowozin, S., Kohli, P., &amp;amp; Balog, M. (2025). &lt;em&gt;AlphaEvolve: A coding agent for scientific and algorithmic discovery&lt;/em&gt; [White paper]. arXiv. &lt;a href="https://doi.org/10.48550/arXiv.2506.13131" rel="noopener noreferrer"&gt;https://doi.org/10.48550/arXiv.2506.13131&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Romera-Paredes, B., Barekatain, M., Novikov, A., Balog, M., Kumar, M. P., Dupont, E., Ruiz, F. J. R., Ellenberg, J. S., Wang, P., Fawzi, O., Kohli, P., &amp;amp; Fawzi, A. (2024). Mathematical discoveries from program search with large language models. &lt;em&gt;Nature, 625&lt;/em&gt;(7995), 468–475. &lt;a href="https://doi.org/10.1038/s41586-023-06924-6" rel="noopener noreferrer"&gt;https://doi.org/10.1038/s41586-023-06924-6&lt;/a&gt;&lt;/p&gt;




</description>
      <category>ai</category>
      <category>science</category>
      <category>technology</category>
      <category>innovation</category>
    </item>
    <item>
      <title>The Most Underrated Infrastructure Shift of the Year: Google Cloud’s New Serverless</title>
      <dc:creator>Cedric Sebastian</dc:creator>
      <pubDate>Thu, 30 Apr 2026 04:28:52 +0000</pubDate>
      <link>https://dev.to/cedsbstn/the-most-underrated-infrastructure-shift-of-the-year-google-clouds-new-serverless-44dn</link>
      <guid>https://dev.to/cedsbstn/the-most-underrated-infrastructure-shift-of-the-year-google-clouds-new-serverless-44dn</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/google-cloud-next-2026-04-22"&gt;Google Cloud NEXT Writing Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Topic:&lt;/strong&gt; Cloud Run’s new serverless primitives—Cloud Run Instances, Cloud Run Sandboxes, and Ephemeral Disk Storage—announced at Google Cloud Next ’26, plus native integration with the Gemini Enterprise Agent Platform via the Model Context Protocol (MCP).&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Format:&lt;/strong&gt; Opinion Piece  &lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Introduction: The Announcement Nobody Is Talking About
&lt;/h2&gt;

&lt;p&gt;Google Cloud Next ’26 produced 260 announcements [1]. Predictably, the headlines went to the Gemini Enterprise Agent Platform—the rebranded, expanded successor to Vertex AI—alongside eighth-generation TPUs, the Agentic Data Cloud, and the Wiz-powered Agentic Defense story [2]. Thomas Kurian’s keynote framed the entire conference around a singular, aggressive thesis: the agentic enterprise is here, and Google Cloud is its operating system [6].&lt;/p&gt;

&lt;p&gt;Buried beneath that flashy narrative, however, was a set of infrastructure announcements that will easily outlast the keynote buzz. Google quietly introduced three new &lt;a href="https://cloud.google.com/blog/products/serverless/whats-new-for-cloud-run-at-next26" rel="noopener noreferrer"&gt;Cloud Run primitives&lt;/a&gt; that fundamentally redefine what serverless means on GCP. Alongside these, the platform revealed a tight, native integration with the Gemini Enterprise Agent Platform via the Model Context Protocol (MCP) [6]. Together, these updates transform Cloud Run from a passive HTTP host into a stateful, secure, agent-first compute fabric. &lt;/p&gt;

&lt;p&gt;The developer community has largely ignored these primitives in favor of the Gemini spectacle. That is a massive mistake. This evolution addresses the single greatest barrier to production-grade AI agents—trustworthy, isolated, and persistent execution—in a way no hyperscaler has delivered before. If developers overlook these primitives now, they will spend the next two years retrofitting architectures that could have been built correctly from day one.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem: Why “Traditional” Serverless Failed the Agentic Era
&lt;/h2&gt;

&lt;p&gt;Before examining the new primitives, we have to understand the architectural gap they fill. Cloud Run established itself as the gold standard for stateless, request-driven compute, abstracting away the Kubernetes control plane while preserving Knative’s operational simplicity. But this model was designed for a world of synchronous HTTP requests, not for AI agents that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Run continuously for hours.&lt;/li&gt;
&lt;li&gt;  Maintain complex conversational state.&lt;/li&gt;
&lt;li&gt;  Execute dynamically generated, untrusted code.&lt;/li&gt;
&lt;li&gt;  Demand persistent, local scratch space.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The industry workarounds had become folklore. Developers pinged their own endpoints to keep containers warm. They massively over-provisioned RAM because the local filesystem was an in-memory &lt;code&gt;tmpfs&lt;/code&gt;—meaning if you staged a 2 GB dataset, you consumed 2 GB of your container’s memory, often triggering an OOM (Out of Memory) kill. &lt;/p&gt;

&lt;p&gt;For anything more complex, teams begrudgingly fell back to GKE clusters or VMs. These weren’t edge cases; they were the default, broken patterns for agentic workloads. One Chinese developer perfectly summarized the prevailing anxiety in the community: &lt;/p&gt;


&lt;div class="crayons-card c-embed"&gt;

  “每次赋予代理真实工具权限（不是玩具演示），都会感受到一种‘无法摆脱的低级恐惧’”&lt;br&gt;
— &lt;em&gt;“Every time you give an agent real tool permissions (not a toy demo), you feel an inescapable, primal fear.”&lt;/em&gt; [8]&lt;br&gt;

&lt;/div&gt;


&lt;p&gt;Giving an LLM the keys to a shell and hoping it behaves isn’t security; it’s a prayer. This is exactly the crisis Google’s new Cloud Run primitives solve.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Four Primitives That Change Serverless
&lt;/h2&gt;

&lt;p&gt;Google announced four interconnected capabilities at Next ’26. Here is a breakdown of what they are and why they matter.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Architectural Shift at a Glance
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Capability&lt;/th&gt;
&lt;th&gt;Traditional Serverless Model&lt;/th&gt;
&lt;th&gt;Next '26 Cloud Run Primitives&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Compute&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Scale-to-zero, request-driven&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Instances:&lt;/strong&gt; Guaranteed, long-lived background processing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Security&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Basic container-level isolation&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Sandboxes:&lt;/strong&gt; Zero-trust, gVisor-backed micro-VMs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Storage&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;In-memory &lt;code&gt;tmpfs&lt;/code&gt; (The "RAM Tax")&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;Ephemeral Disk:&lt;/strong&gt; Dedicated NVMe block storage&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Orchestration&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Custom API middleware&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;MCP Integration:&lt;/strong&gt; Native, IAM-authenticated agent scaling&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;



&lt;h3&gt;
  
  
  1. Cloud Run Instances (Preview): Guaranteed Baseline Compute
&lt;/h3&gt;

&lt;p&gt;Historically, Cloud Run’s scale-to-zero model left a frustrating gap for architectures requiring continuous background processing or persistent daemons. &lt;strong&gt;Cloud Run Instances&lt;/strong&gt; bridge that gap by provisioning long-lived, dedicated containers that &lt;em&gt;do not scale to zero&lt;/em&gt; [3]. &lt;/p&gt;

&lt;p&gt;From a systems-engineering perspective, this is the most critical primitive. It provides a native serverless abstraction for continuous event backbones without relying on HTTP concurrency hacks. The official blog demonstrated a single command to provision such an instance with a Cloud Storage volume mount:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;gcloud run instances create &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--image&lt;/span&gt; alpine/openclaw:latest &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--port&lt;/span&gt; 18789 &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--memory&lt;/span&gt; 4Gi &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--default-url&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--add-volume&lt;/span&gt; mount-path&lt;span class="o"&gt;=&lt;/span&gt;/home/node/.openclaw,type&lt;span class="o"&gt;=&lt;/span&gt;cloud-storage,bucket&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="nv"&gt;$BUCKET_NAME&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Developers no longer need to choose between the operational simplicity of serverless and the continuous persistence requirements of stateful workloads.&lt;/p&gt;
&lt;h3&gt;
  
  
  2. Cloud Run Sandboxes (Preview): Zero-Trust Execution
&lt;/h3&gt;

&lt;p&gt;When building systems that dynamically generate and execute code, you are dealing with fundamentally untrusted workloads. &lt;strong&gt;Cloud Run Sandboxes&lt;/strong&gt; expose gVisor-backed, micro-VM isolation as a configurable developer primitive, allowing you to spin up execution environments with granular egress and syscall restrictions [4].&lt;/p&gt;

&lt;p&gt;This is the exact same isolation technology Google uses to protect Gemini itself. The performance characteristics are staggering: 300 sandboxes launched per second per cluster, sub-second time-to-first-instruction, and stateful session persistence [5]. Prior approaches forced a trade-off: sacrifice isolation (shared storage) or sacrifice continuity (reconstructing the environment for every call). Cloud Run Sandboxes maintain strict boundaries while preserving session state—acting as a "memory-equipped prison" for autonomous code execution.&lt;/p&gt;
&lt;h3&gt;
  
  
  3. Ephemeral Disk Storage (Preview): Breaking the RAM Tax
&lt;/h3&gt;

&lt;p&gt;This primitive will immediately improve the quality of life for developers doing data-intensive work. Previously, staging large datasets meant paying a massive "RAM tax" due to the &lt;code&gt;tmpfs&lt;/code&gt; filesystem. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ephemeral Disk Storage&lt;/strong&gt; attaches dedicated, local, high-speed block storage (NVMe-backed) directly to your instances [3]. This storage dies with the instance, but crucially, it does not consume your memory allocation. A Kafka consumer buffering gigabytes of streaming data can now write to local NVMe rather than holding it in memory, avoiding OOM kills entirely [4].&lt;/p&gt;
&lt;h3&gt;
  
  
  4. Gemini Enterprise Agent Platform Integration via MCP (Preview)
&lt;/h3&gt;

&lt;p&gt;Google tightly integrated Cloud Run with the Gemini Enterprise Agent Platform using the &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;. This allows multi-agent systems to securely interface with internal infrastructure without building custom authentication middleware; the transport layer is natively authenticated via Google Cloud IAM [4].&lt;/p&gt;

&lt;p&gt;This elevates Cloud Run from a mere hosting target to a &lt;em&gt;cognitive capability&lt;/em&gt;. An agent equipped with an MCP-mapped skill can dynamically act as its own platform engineer—provisioning an Instance for a background daemon or a Sandbox for safe code execution on the fly.&lt;/p&gt;


&lt;h2&gt;
  
  
  Production Patterns: What This Actually Enables
&lt;/h2&gt;

&lt;p&gt;Architectural features are only as valuable as the systems they enable. Here are four production patterns these primitives unlock [4]:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Continuous Stateful Ingestion:&lt;/strong&gt; Combine Instances and Ephemeral Disk to deploy a horizontally scalable Kafka consumer group entirely on serverless. Instances maintain uninterrupted connections; NVMe buffers the payloads. &lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Autonomous Zero-Trust SOC Analyst:&lt;/strong&gt; Security agents often need to execute dynamic scripts to analyze suspicious binaries. Cloud Run Sandboxes ensure this execution occurs within an isolated gVisor micro-VM with restricted network egress, ensuring a zero-blast radius.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Agentic Firewall Configuration Loops:&lt;/strong&gt; An Instance can run continuously to tail telemetry logs. Upon detecting an anomaly, it triggers a Gemini Agent via MCP, which securely navigates the firewall architecture via IAM and updates blocklists in real time.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;The Agentic Platform Engineer:&lt;/strong&gt; A local agent equipped with an MCP-mapped Skill can dynamically orchestrate its own Instances, Sandboxes, and Ephemeral Disks to solve complex problems, provisioning its own compute resources in real time.&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  The Critique: What’s Missing and What to Watch
&lt;/h2&gt;

&lt;p&gt;An honest evaluation requires acknowledging the gaps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Preview Gating:&lt;/strong&gt; The most valuable primitives are preview-only and limited to select customers. Developers must weigh the risk of betting on preview APIs against immediate architectural benefits.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Vendor Coupling Risk:&lt;/strong&gt; The MCP integration is deeply tied to Google Cloud IAM. While the A2A (Agent-to-Agent) protocol and ADK (Agent Development Kit) are open-source, the managed hosting layer and Agent Registry are heavily coupled to GCP [5].&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Observability Maturity:&lt;/strong&gt; Debugging what happened inside an ephemeral gVisor container requires a mature observability pipeline. While ADK 1.0’s OpenTelemetry integration is encouraging, the sandbox-specific tracing story needs clearer documentation.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;The Competitive Landscape:&lt;/strong&gt; AWS Lambda and Azure Container Apps haven't responded with equivalent primitives yet—but they will. Google’s gVisor-backed serverless sandboxing is a massive first-mover advantage, but it is a window of opportunity, not an impenetrable moat.&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  Conclusion: The Foundation, Not the Fireworks
&lt;/h2&gt;

&lt;p&gt;The Gemini Enterprise Agent Platform is the user-facing story of Next ’26. But platforms need foundations, and Cloud Run’s new primitives are precisely that: the infrastructure layer that makes agentic workloads production-grade rather than a flimsy proof-of-concept. &lt;/p&gt;

&lt;p&gt;My recommendation to the developer community is straightforward: look past the keynote pyrotechnics. Experiment with Cloud Run Instances for your stateful workloads. Evaluate Cloud Run Sandboxes as the execution boundary for any agent running untrusted code. Plan your capacity models around Ephemeral Disk rather than RAM over-provisioning. &lt;/p&gt;

&lt;p&gt;The agentic era demands infrastructure that is stateful, secure, and highly composable. Google shipped exactly that at Next ’26. The rest of us just haven’t noticed yet.&lt;/p&gt;


&lt;h2&gt;
  
  
  References
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;[1]&lt;/strong&gt; Google Cloud, “260 things we announced at Google Cloud Next ’26 – a recap,” &lt;em&gt;Google Cloud Blog&lt;/em&gt;, Apr. 25, 2026. [Online]. Available: &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/google-cloud-next-2026-wrap-up" rel="noopener noreferrer"&gt;https://cloud.google.com/blog/topics/google-cloud-next/google-cloud-next-2026-wrap-up&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[2]&lt;/strong&gt; Google Cloud, “Welcome to Google Cloud Next ‘26,” &lt;em&gt;Google Cloud Blog&lt;/em&gt;, Apr. 23, 2026. [Online]. Available: &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/welcome-to-google-cloud-next26" rel="noopener noreferrer"&gt;https://cloud.google.com/blog/topics/google-cloud-next/welcome-to-google-cloud-next26&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[3]&lt;/strong&gt; S. Giannini and B. Runkle, “What’s new in Cloud Run at Next ‘26,” &lt;em&gt;Google Cloud Blog&lt;/em&gt;, Apr. 23, 2026. [Online]. Available: &lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://cloud.google.com/blog/products/serverless/whats-new-for-cloud-run-at-next26" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fstorage.googleapis.com%2Fgweb-cloudblog-publish%2Fimages%2FGCN26_102_BlogHeader_2436x1200_Opt_15_Dark.max-2500x2500.jpg" height="394" class="m-0" width="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://cloud.google.com/blog/products/serverless/whats-new-for-cloud-run-at-next26" rel="noopener noreferrer" class="c-link"&gt;
            What’s new for Cloud Run at Next ‘26 | Google Cloud Blog
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Cloud Run updates at Next include integrations with Google AI Studio and Gemini Enterprise Agent Platform plus support for NVIDIA Blackwell GPUs.
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.gstatic.com%2Fcgc%2Fsupercloud_favicon.ico" width="64" height="64"&gt;
          cloud.google.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;[4]&lt;/strong&gt; Google Cloud Developer Advocates, “Stateful Serverless: The Architectural Evolution of Cloud Run for the Agentic Era,” &lt;em&gt;Medium&lt;/em&gt;, Apr. 28, 2026. [Online]. Available: &lt;a href="https://medium.com/google-cloud/architectural-evolution-of-cloud-run-for-the-agentic-era-28af995cecb0" rel="noopener noreferrer"&gt;https://medium.com/google-cloud/architectural-evolution-of-cloud-run-for-the-agentic-era-28af995cecb0&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[5]&lt;/strong&gt; R. Bobade, “I Looked Past the Keynote Hype: Why A2A + ADK Is the Real Story of Google Cloud NEXT ’26,” &lt;em&gt;dev.to&lt;/em&gt;, Apr. 23, 2026. [Online]. Available: &lt;/p&gt;
&lt;div class="ltag__link--embedded"&gt;
  &lt;div class="crayons-story "&gt;
  &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec" class="crayons-story__hidden-navigation-link"&gt;I Looked Past the Keynote Hype: Why A2A + ADK Is the Real Story of Google Cloud NEXT '26&lt;/a&gt;


  &lt;div class="crayons-story__body crayons-story__body-full_post"&gt;
      &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec" class="crayons-article__context-note crayons-article__context-note__feed"&gt;&lt;p&gt;Google Cloud NEXT '26 Challenge Submission&lt;/p&gt;

&lt;/a&gt;
    &lt;div class="crayons-story__top"&gt;
      &lt;div class="crayons-story__meta"&gt;
        &lt;div class="crayons-story__author-pic"&gt;

          &lt;a href="/rushikesh_bobade" class="crayons-avatar  crayons-avatar--l  "&gt;
            &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3779996%2F9a03d271-2673-45ec-9c09-93517d615a3d.png" alt="rushikesh_bobade profile" class="crayons-avatar__image" width="96" height="96"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;div&gt;
            &lt;a href="/rushikesh_bobade" class="crayons-story__secondary fw-medium m:hidden"&gt;
              Rushikesh Bobade
            &lt;/a&gt;
            &lt;div class="profile-preview-card relative mb-4 s:mb-0 fw-medium hidden m:inline-block"&gt;
              
                Rushikesh Bobade
                
              
              &lt;div id="story-author-preview-content-3539156" class="profile-preview-card__content crayons-dropdown branded-7 p-4 pt-0"&gt;
                &lt;div class="gap-4 grid"&gt;
                  &lt;div class="-mt-4"&gt;
                    &lt;a href="/rushikesh_bobade" class="flex"&gt;
                      &lt;span class="crayons-avatar crayons-avatar--xl mr-2 shrink-0"&gt;
                        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3779996%2F9a03d271-2673-45ec-9c09-93517d615a3d.png" class="crayons-avatar__image" alt="" width="96" height="96"&gt;
                      &lt;/span&gt;
                      &lt;span class="crayons-link crayons-subtitle-2 mt-5"&gt;Rushikesh Bobade&lt;/span&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                  &lt;div class="print-hidden"&gt;
                    
                      Follow
                    
                  &lt;/div&gt;
                  &lt;div class="author-preview-metadata-container"&gt;&lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

          &lt;/div&gt;
          &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec" class="crayons-story__tertiary fs-xs"&gt;&lt;time&gt;Apr 23&lt;/time&gt;&lt;span class="time-ago-indicator-initial-placeholder"&gt;&lt;/span&gt;&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;

    &lt;/div&gt;

    &lt;div class="crayons-story__indention"&gt;
      &lt;h2 class="crayons-story__title crayons-story__title-full_post"&gt;
        &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec" id="article-link-3539156"&gt;
          I Looked Past the Keynote Hype: Why A2A + ADK Is the Real Story of Google Cloud NEXT '26
        &lt;/a&gt;
      &lt;/h2&gt;
        &lt;div class="crayons-story__tags"&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/devchallenge"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;devchallenge&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/cloudnextchallenge"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;cloudnextchallenge&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/googlecloud"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;googlecloud&lt;/a&gt;
            &lt;a class="crayons-tag  crayons-tag--monochrome " href="/t/ai"&gt;&lt;span class="crayons-tag__prefix"&gt;#&lt;/span&gt;ai&lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="crayons-story__bottom"&gt;
        &lt;div class="crayons-story__details"&gt;
          &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left"&gt;
            &lt;div class="multiple_reactions_aggregate"&gt;
              &lt;span class="multiple_reactions_icons_container"&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/exploding-head-daceb38d627e6ae9b730f36a1e390fca556a4289d5a41abb2c35068ad3e2c4b5.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/multi-unicorn-b44d6f8c23cdd00964192bedc38af3e82463978aa611b4365bd33a0f1f4f3e97.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
                  &lt;span class="crayons_icon_container"&gt;
                    &lt;img src="https://assets.dev.to/assets/sparkle-heart-5f9bee3767e18deb1bb725290cb151c25234768a0e9a2bd39370c382d02920cf.svg" width="24" height="24"&gt;
                  &lt;/span&gt;
              &lt;/span&gt;
              &lt;span class="aggregate_reactions_counter"&gt;4&lt;span class="hidden s:inline"&gt;&amp;nbsp;reactions&lt;/span&gt;&lt;/span&gt;
            &lt;/div&gt;
          &lt;/a&gt;
            &lt;a href="https://dev.to/rushikesh_bobade/i-looked-past-the-keynote-hype-why-a2a-adk-is-the-real-story-of-google-cloud-next-26-1gec#comments" class="crayons-btn crayons-btn--s crayons-btn--ghost crayons-btn--icon-left flex items-center"&gt;
              

              &lt;span class="hidden s:inline"&gt;Add&amp;nbsp;Comment&lt;/span&gt;
            &lt;/a&gt;
        &lt;/div&gt;
        &lt;div class="crayons-story__save"&gt;
          &lt;small class="crayons-story__tertiary fs-xs mr-2"&gt;
            10 min read
          &lt;/small&gt;
            
              &lt;span class="bm-initial"&gt;
                

              &lt;/span&gt;
              &lt;span class="bm-success"&gt;
                

              &lt;/span&gt;
            
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;[6]&lt;/strong&gt; M. Gerstenhaber and M. Bachman, “Introducing Gemini Enterprise Agent Platform, powering the next wave of agents,” &lt;em&gt;Google Cloud Blog&lt;/em&gt;, Apr. 23, 2026. [Online]. Available: &lt;a href="https://cloud.google.com/blog/products/ai-machine-learning/introducing-gemini-enterprise-agent-platform" rel="noopener noreferrer"&gt;https://cloud.google.com/blog/products/ai-machine-learning/introducing-gemini-enterprise-agent-platform&lt;/a&gt;  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[7]&lt;/strong&gt; Google Cloud, “Day 1 at Google Cloud Next ‘26 recap,” &lt;em&gt;Google Cloud Blog&lt;/em&gt;, Apr. 23, 2026. [Online]. Available: &lt;a href="https://cloud.google.com/blog/topics/google-cloud-next/next26-day-1-recap" rel="noopener noreferrer"&gt;https://cloud.google.com/blog/topics/google-cloud-next/next26-day-1-recap&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[8]&lt;/strong&gt; “每秒300个沙盒：Google把AI代理的‘定时炸弹’拆了,” &lt;em&gt;163.com&lt;/em&gt;, Apr. 30, 2026. [Online]. Available: &lt;a href="https://www.163.com/dy/article/KRNLIEBV05561FZW.html" rel="noopener noreferrer"&gt;https://www.163.com/dy/article/KRNLIEBV05561FZW.html&lt;/a&gt; &lt;/p&gt;

</description>
      <category>ai</category>
      <category>googlecloud</category>
      <category>cloudnextchallenge</category>
      <category>devchallenge</category>
    </item>
    <item>
      <title>Decision Is All You Need: Lifelong Learning or Lifelong Guilty</title>
      <dc:creator>Cedric Sebastian</dc:creator>
      <pubDate>Mon, 22 Dec 2025 20:44:32 +0000</pubDate>
      <link>https://dev.to/gdg/decision-is-all-you-need-lifelong-learning-or-lifelong-guilty-5e27</link>
      <guid>https://dev.to/gdg/decision-is-all-you-need-lifelong-learning-or-lifelong-guilty-5e27</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgo5j4wwo7yg8pk0gei20.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgo5j4wwo7yg8pk0gei20.png" width="800" height="339"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Decide and Build your future, not accept.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;It’s been long time since the previous story uploaded, thanks.&lt;/p&gt;

&lt;p&gt;This time we will learn about Lifelong Learning, empowering &lt;strong&gt;Google Skill&lt;/strong&gt; for Lifelong Learning, and we become free from Lifelong Guilty.&lt;/p&gt;

&lt;p&gt;Disclaimer: Reading this blog make you become future-ready being. This blog consists of motivational, philosophy, and psychology.&lt;/p&gt;

&lt;p&gt;“It’s what you do right now that makes a difference.”&lt;br&gt;&lt;br&gt;
— &lt;em&gt;Black Hawk Down&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Introduction: The Reality
&lt;/h4&gt;

&lt;p&gt;Have you ever read or seen a post of people who talk about Lifelong learning like this?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fu7i87rowgt1awfj071y3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fu7i87rowgt1awfj071y3.png" width="678" height="291"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Post by Eva Kozma on LinkedIn&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That's correct. L &lt;strong&gt;&lt;em&gt;ifelong learning is the act of learning throughout one's entire life&lt;/em&gt;&lt;/strong&gt;. These align with Albert Einstein's quotes.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Education is what remains after one has forgotten what one has learned in school.”&lt;/p&gt;

&lt;p&gt;― &lt;strong&gt;Albert Einstein&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Imagine if the picture below became reality:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2AmpQKgHtC13vATekC" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2AmpQKgHtC13vATekC" width="1024" height="1384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The introvert with AI&lt;/strong&gt; can reach further than those who do not use AI.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;The leader with AI&lt;/strong&gt; capable of reaching another country.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;&lt;em&gt;While the boss with AI&lt;/em&gt;&lt;/strong&gt; is only able to reach less than the introvert with AI, and the absolute trouble because the boss only control &amp;amp; instruct not lead even teach.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's all just different human characters with AI, what if different human characters with &lt;strong&gt;AGI&lt;/strong&gt; (&lt;em&gt;Artificial General Intelligence&lt;/em&gt;) or even &lt;strong&gt;ASI&lt;/strong&gt; (&lt;em&gt;Artificial Super Intelligence&lt;/em&gt;)? &lt;strong&gt;&lt;em&gt;Answer it with your empathy and intelligence.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Real threat of AI_:_&lt;/strong&gt; &lt;em&gt;Recently, many people said,&lt;/em&gt; “ &lt;strong&gt;AI will replace humans&lt;/strong&gt; ”.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My thought_:_&lt;/strong&gt; Humans aren’t replaced by AI, but humans will be replaced by those who use AI and those willing to learn future-ready skills.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;AI only replaced those who are still unwilling to adapt, and learn. It replaces the stagnant. It replaces the arrogant.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Question:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;em&gt;Even machine learn, why do humans still doomscroll?&lt;br&gt;&lt;br&gt;
Decide now, lifelong learning or lifelong guilt?&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  The Logic: Psychology of F.O.B.O (Fear Of Becoming Obsolete)
&lt;/h4&gt;

&lt;p&gt;Historically, and even now, humans have inner anxiety from within. Humans have constantly compared themselves to their nearest neighbors and asked, "Can I be better than them?" (Example: "Looks, our neighbors Morty became a High-Paid Cloud Consultant at IBM"). That is &lt;a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC4222713/" rel="noopener noreferrer"&gt;social comparison&lt;/a&gt;. Morty's Fortune or even Luck, or he studied smarter, which let him become a High-Paid Cloud Consultant at IBM.&lt;/p&gt;

&lt;p&gt;This time, our goals have shifted. We are no longer comparing ourselves with others, but we are truly competing with technological advancements. This has evolved jealousy into a real danger*&lt;em&gt;: F.O.B.O. (Fear Of Becoming Obsolete)&lt;/em&gt;*. Now humans need competence, future-ready skills, and always updated.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dario Amodei&lt;/strong&gt; , co-founder and chief executive officer of Anthropic, and Elon Musk are optimistic that AI will be smarter than the most intelligent humans by &lt;strong&gt;2026&lt;/strong&gt;. And OpenAI CEO &lt;strong&gt;Sam Altman&lt;/strong&gt; published an &lt;a href="https://ia.samaltman.com/" rel="noopener noreferrer"&gt;essay&lt;/a&gt; saying that we might reach AGI in "a few thousand days*&lt;em&gt;(!)&lt;/em&gt;*," suggesting sometime in the next decade.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;SIMA (Scalable Intructable Multiworld Agent) 2&lt;/strong&gt;: &lt;em&gt;An Agent that Plays, Reasons, and Learns With You in Virtual 3D Worlds&lt;/em&gt; has proven that human almost reach even achieve  &lt;strong&gt;&lt;em&gt;AGI.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;My thought&lt;/strong&gt; : &lt;em&gt;We might reach AGI between 2026–2035, possibly around 2027.&lt;/em&gt;&lt;br&gt;&lt;br&gt;
~ backed by data such as &lt;strong&gt;SIMA 2 capabilities&lt;/strong&gt; , as we can see that SIMA 2 capabilities &lt;strong&gt;able to reach AGI soon&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Look at the benchmark below, which shows a 10% gap in "Task completion success rates" &lt;strong&gt;between Human and SIMA 2&lt;/strong&gt;. It looks insane, but that's real.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2ALEhgVXLOAzAVKDPI" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1024%2F0%2ALEhgVXLOAzAVKDPI" width="1024" height="804"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Image by Google Deepmind&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  The Philosophy: Just in Case vs. Just in Time
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;Have you ever heard, seen or remember these phrase?&lt;/p&gt;

&lt;p&gt;“It’s Now or Never”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This phrase is the title of a famous 1960 song by Elvis Presley. As we can see and understand from this phrase, we should take any decision or action immediately, because another opportunity may not come.&lt;/p&gt;

&lt;p&gt;Nowadays, many people focus only on themselves and lack motivation to learn, whereas many people in the past were motivated to invent something new. That means, recent people are learn &lt;strong&gt;&lt;em&gt;just in case&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;People buy the book, just in case.&lt;/li&gt;
&lt;li&gt;People learn language, just in case.&lt;/li&gt;
&lt;li&gt;People learn the programming language, just in case.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the past, all of this made sense due to a lack of resources. Information was very limited. Today, we need to change our mindset. We need to learn " &lt;strong&gt;&lt;em&gt;just in time&lt;/em&gt;&lt;/strong&gt;". Currently, a growth mindset is more valuable and necessary, regardless of how rich you are or who you are.&lt;/p&gt;

&lt;p&gt;Humans are living and Natural Intelligence, which means they are the most advanced above Artificial Super Intelligence. Those who are still stuck in the past, with a fixed, mindless mindset and unwilling to learn new things, such as future-ready skills, are ready to be replaced by future technology, perhaps Artificial Super Intelligence.&lt;/p&gt;

&lt;p&gt;True freedom is not about knowing everything. True freedom is about knowing that whatever happens, you have the Growth Mindset to learn the solution Just in Time.&lt;/p&gt;

&lt;h4&gt;
  
  
  The Solution: Empowering Google Skills
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;“ &lt;strong&gt;Facta sunt potentiora verbis&lt;/strong&gt; ” &lt;em&gt;(Deeds are more powerful than words).&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As we can see, deeds or practices are more powerful than just a theory or words. Nowadays, there are too many learning platforms that only teach us the " &lt;strong&gt;words&lt;/strong&gt;" (I mean Theory), even Albert Einstein said:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In theory, theory and practice are the same.&lt;/p&gt;

&lt;p&gt;In practice, they are not. ― Albert Einstein&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The antidote of F.O.B.O. isn't to stay &amp;amp; learn "Just in case", it is " &lt;strong&gt;Just in time&lt;/strong&gt;".&lt;/p&gt;

&lt;p&gt;There is a new way to learn, empowering &lt;a href="https://www.skills.google/" rel="noopener noreferrer"&gt;&lt;strong&gt;Google Skills&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;(&lt;/strong&gt;which formerly was Google Cloud Skills Boost and before that, Qwiklabs). It is a comprehensive ecosystem containing nearly 3,000 courses, labs, and credentials in one platform — including much content from across &lt;strong&gt;Google Cloud&lt;/strong&gt; , &lt;strong&gt;Google DeepMind&lt;/strong&gt; , &lt;strong&gt;Grow with Google,&lt;/strong&gt; and &lt;strong&gt;Google for Education&lt;/strong&gt; into one essential platform.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.skills.google/" rel="noopener noreferrer"&gt;&lt;strong&gt;Google Skills&lt;/strong&gt;&lt;/a&gt; is a new home for those who want to become future-ready beings, always updated, and build and learning skills in AI, Cloud, etc. Build real-world skills through actual practice (Hands-on learning) that is more powerful than a lot of Theory, and then prove what you've learned with credentials like skill badges, completion, and entry-level certificates and certifications.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://services.google.com/fh/files/misc/the_future_of_ai_and_technical_learning.pdf" rel="noopener noreferrer"&gt;&lt;strong&gt;Ninety-six percent of decision makers&lt;/strong&gt;&lt;/a&gt; plan to &lt;strong&gt;invest more time&lt;/strong&gt; in &lt;strong&gt;hands-on labs&lt;/strong&gt;. It offers help and extensive no-cost options for learners at every level. Learn now, you are eligible to get &lt;a href="https://www.skills.google/subscriptions" rel="noopener noreferrer"&gt;&lt;strong&gt;35 credits free every month&lt;/strong&gt;&lt;/a&gt; to enroll in hands-on labs on &lt;strong&gt;Google Skills&lt;/strong&gt; at no cost.&lt;/p&gt;

&lt;h4&gt;
  
  
  The Result: New Freedom
&lt;/h4&gt;

&lt;p&gt;What if you truly adopt the “Just in Time” philosophy?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You are ready to adapt to the era of Intelligence.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When you master the skill of retrieval and hands-on practice or learning, you realize something profound:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You don't need to own the information to use it.&lt;/li&gt;
&lt;li&gt;You can close the 40 browser tabs you’ve been "saving for later." Close them.&lt;/li&gt;
&lt;li&gt;You stop buying courses "just in case." &lt;strong&gt;Save your money. Save your life.&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isn’t about being lazy. It is about being ready. When you are free from the anxiety of what you should be learning, you actually create space for what you want to learn. You move from a state of reactive panic ("I must learn this to survive in the Era of Intelligence") to proactive curiosity ("I want to learn this because it fascinates me").&lt;/p&gt;

&lt;p&gt;In the 21st century, the smartest person in the room is no longer those who are clever and have memorized all the answers. It is the one who really understands the question deeply enough to find the answer.&lt;/p&gt;

&lt;p&gt;Never miss an update — follow for the new updates!&lt;/p&gt;

&lt;p&gt;Thank you so much for reading this article. I hope this article can give you a better understanding and vision of how to become a future-ready being, a lot of quotes, new knowledge about the reality, F.O.B.O. (Fear Of Being Obsolete), just in case vs. just in time, and empowering Google Skills as the solution.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Altman, S. (2024, September 23). The Intelligence Age. SamAltman.com. &lt;a href="https://ia.samaltman.com/" rel="noopener noreferrer"&gt;https://ia.samaltman.com/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;DeepMind. (2025, November 13). SIMA 2: An Agent that Plays, Reasons, and Learns With You in Virtual 3D Worlds. Google DeepMind. &lt;a href="https://deepmind.google/blog/sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds/" rel="noopener noreferrer"&gt;https://deepmind.google/blog/sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Google Cloud. (2025). The Value of Cloud Skills: Why Hands-on Labs Matter. Google Cloud Skills Boost. &lt;a href="https://www.skills.google/" rel="noopener noreferrer"&gt;https://www.skills.google/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;McGinnis, P. J. (2004). Social Theory at HBS: McGinnis' Two FOs. The Harbus. &lt;a href="https://patrickmcginnis.com/about-me/" rel="noopener noreferrer"&gt;https://patrickmcginnis.com/about-me/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Presley, E. (1960). It's Now or Never [Song]. On Elvis Is Back!. RCA Victor.&lt;/li&gt;
&lt;/ul&gt;




</description>
      <category>psychology</category>
      <category>culture</category>
      <category>lifestyle</category>
      <category>technology</category>
    </item>
  </channel>
</rss>
