<?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>github Archives | Clever Cloud</title>
	<atom:link href="https://www.clever.cloud/blog/tag/github/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.clever.cloud/blog/tag/github/</link>
	<description>From Code to Product</description>
	<lastBuildDate>Fri, 06 Dec 2024 10:06:53 +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>github Archives | Clever Cloud</title>
	<link>https://www.clever.cloud/blog/tag/github/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Deploy from GitLab or GitHub</title>
		<link>https://www.clever.cloud/blog/engineering/2024/04/10/deploy-from-gitlab-or-github/</link>
		
		<dc:creator><![CDATA[Julia March]]></dc:creator>
		<pubDate>Wed, 10 Apr 2024 12:06:47 +0000</pubDate>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[ci/cd]]></category>
		<category><![CDATA[giltab]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[heptapod]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?p=12101</guid>

					<description><![CDATA[<p><img width="6912" height="3456" src="https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="github gitlab deployments" decoding="async" fetchpriority="high" srcset="https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments.png 6912w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-300x150.png 300w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1024x512.png 1024w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-768x384.png 768w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1536x768.png 1536w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-2048x1024.png 2048w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1368x684.png 1368w" sizes="(max-width: 6912px) 100vw, 6912px" /></p><!-- wp:paragraph -->
<p>Over the past few months, some customers have raised questions about CI/CD building to deploy from GitHub or GitLab. The two platforms differ significantly on the subject, but are the ones massively used to store code and collaborate.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we're committed to providing a wide range of products and features to facilitate application deployment and maintenance. We aim to constantly improve our customers' experience as well. In this article, we detail how we have approached the subject of CI/CD to simplify deployments, regardless of where you store your code.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Two platforms, one common principle</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Clever Cloud provides a CLI for deploying and managing both applications and add-ons. So far, we've suggested that our customers use it to build their CI/CD. However, writing a pipeline, even with a facilitating tool like a CLI to connect to Clever Cloud, is a long and tedious task. Especially when you're busy developing your application.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Keeping in mind one of our founding principles, to make the work of developers and IT teams as easy as possible, we started to provide slightly more advanced CI/CD tools, both for GitHub and GitLab.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Deploying from GitHub: go further with review apps</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Customers using GitHub are already familiar with <a href="https://developers.clever-cloud.com/doc/ci-cd/#deploy-from-github">our integration, enabling them to deploy from this platform</a>. In addition to this integration, anyone could use the CLI to customize their pipeline.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Based on this configuration, we've provided <a href="https://github.com/CleverCloud/clever-cloud-review-app">a workflow template </a>for deploying review apps from GitHub to Clever Cloud. This script performs the following actions:</p>
<!-- /wp:paragraph -->

<!-- wp:list {"ordered":true} -->
<ol><!-- wp:list-item -->
<li>Create and deploy an app on Clever Cloud from the branch where the PR is open, with a test domain name ;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Update the application with each new commit ;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Delete the application when the PR is closed.</li>
<!-- /wp:list-item --></ol>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>A comment posts the link to the review app with each new deployment, and announces the deletion of the app once this job has been completed.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The script retrieves the environment variables and secrets added to your project from GitHub. It's possible to go further and add commands; for example, to connect the review app to a test database, you could add the command <code>clever service link-addon &lt;addon-name&gt;</code>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This template is under constant development to progressively simplify your workflow and make it more efficient. Eventually, this Action should work solely with inputs rather than command lines. In the meantime, feel free to <a href="https://github.com/CleverCloud/clever-cloud-review-app/issues/new">open an issue on the project</a> according to your needs.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/CleverCloud/clever-cloud-review-app" target="_blank" rel="noreferrer noopener">Check the template on GitHub</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Deploying from GitLab</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Our customers working on GitLab (as a SasS or self-hosted instance) have also expressed similar needs for automating their deployments. GitLab differs significantly from GitHub, with a much more DIY approach to CI/CD and different configurations. On GitLab, <a href="https://docs.gitlab.com/ee/ci/variables/predefined_variables.html#predefined-variables-for-merge-request-pipelines">there are no variables</a> for detecting the state of a Merge Request (open or closed), unlike GitHub. If we want to launch a job automatically when it closes, we'<a href="https://docs.gitlab.com/ee/ci/environments/#environment-states"> ll have to use the state of the environments</a> instead, and not that of the MRs.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we already had different deployment pipelines in place from GitLab for certain projects. We've unified and simplified them by creating pipeline components in the GitLab CI/CD catalog. The components replace <a href="https://docs.gitlab.com/ee/development/cicd/templates.html">GitLab's old template catalog</a>, and enable a modular pipeline to be built using inputs. No need to manually customize a script file anymore.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Our contribution to the catalog currently comprises four components:</p>
<!-- /wp:paragraph -->

<!-- wp:list {"ordered":true} -->
<ol><!-- wp:list-item -->
<li>Deploy in production;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Creating a review app from a Merge Request;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Update review app;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Delete review app.</li>
<!-- /wp:list-item --></ol>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>The input values have been predefined to save you time when using them. These components can be used both on gitlab.com and on your self-hosted instance. There's nothing to modify in the project, but <a href="https://docs.gitlab.com/ee/ci/components/#use-a-gitlabcom-component-in-a-self-managed-instance">a few configurations of your instance to check</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>In both cases, we advise you to test the manual triggering of components on your project first. We'll be adding more components as our customers' needs change, and are open to your proposals, to be submitted directly on the project dedicated to them.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://gitlab.com/explore/catalog/CleverCloud/clever-cloud-pipeline" target="_blank" rel="noreferrer noopener">Check the catalog on GitLab</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">The best of both worlds: Heptapod</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>If you use the GitLab Community Edition fork hosted on Clever Cloud, you'll benefit from the advantages of a GitLab as a Service offering, as well as hosting on European servers managed by a French company.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The CI/CD pipeline catalog is already integrated into our Heptapod offer, enabling you to use the components directly in your project, with no instance configuration required.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://developers.clever-cloud.com/doc/addons/heptapod/" target="_blank" rel="noreferrer noopener">Check Heptapod doc</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading -->
<h2 class="wp-block-heading">A simplified pipeline</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Clever Cloud integrates the build, install and run phases of your deployments. All you have to do is push your code, the process is automatic. By including deployment on Clever Cloud in your pipeline, you'll get logs of your application's deployment and its various stages directly in the runner's console. This means:</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>You can skip the build job in your pipeline - our platform already takes care of that.</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>You can monitor your pipeline and its logs directly from GitHub, GitLab or Heptapod, from start to finish.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Remember: if the deployment fails on Clever Cloud, your app will stay up with the last commit  you pushed before your update. It won't crash and your users won't notice anything. <a href="https://www.clever.cloud/blog/company/2022/09/06/whats-clever-in-our-cloud/" target="_blank" rel="noreferrer noopener">We got you!</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>As both projects are in constant development, we plan to go even further in adding flexibility and agility to your deployment processes. We remain open to your suggestions!</p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="6912" height="3456" src="https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="github gitlab deployments" decoding="async" srcset="https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments.png 6912w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-300x150.png 300w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1024x512.png 1024w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-768x384.png 768w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1536x768.png 1536w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-2048x1024.png 2048w, https://cdn.clever-cloud.com/uploads/2024/04/github-gitlab-deployments-1368x684.png 1368w" sizes="(max-width: 6912px) 100vw, 6912px" /></p><!-- wp:paragraph -->
<p>Over the past few months, some customers have raised questions about CI/CD building to deploy from GitHub or GitLab. The two platforms differ significantly on the subject, but are the ones massively used to store code and collaborate.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we're committed to providing a wide range of products and features to facilitate application deployment and maintenance. We aim to constantly improve our customers' experience as well. In this article, we detail how we have approached the subject of CI/CD to simplify deployments, regardless of where you store your code.</p>
<!-- /wp:paragraph -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">Two platforms, one common principle</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Clever Cloud provides a CLI for deploying and managing both applications and add-ons. So far, we've suggested that our customers use it to build their CI/CD. However, writing a pipeline, even with a facilitating tool like a CLI to connect to Clever Cloud, is a long and tedious task. Especially when you're busy developing your application.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Keeping in mind one of our founding principles, to make the work of developers and IT teams as easy as possible, we started to provide slightly more advanced CI/CD tools, both for GitHub and GitLab.</p>
<!-- /wp:paragraph -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Deploying from GitHub: go further with review apps</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Customers using GitHub are already familiar with <a href="https://developers.clever-cloud.com/doc/ci-cd/#deploy-from-github">our integration, enabling them to deploy from this platform</a>. In addition to this integration, anyone could use the CLI to customize their pipeline.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Based on this configuration, we've provided <a href="https://github.com/CleverCloud/clever-cloud-review-app">a workflow template </a>for deploying review apps from GitHub to Clever Cloud. This script performs the following actions:</p>
<!-- /wp:paragraph -->

<!-- wp:list {"ordered":true} -->
<ol><!-- wp:list-item -->
<li>Create and deploy an app on Clever Cloud from the branch where the PR is open, with a test domain name ;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Update the application with each new commit ;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Delete the application when the PR is closed.</li>
<!-- /wp:list-item --></ol>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>A comment posts the link to the review app with each new deployment, and announces the deletion of the app once this job has been completed.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The script retrieves the environment variables and secrets added to your project from GitHub. It's possible to go further and add commands; for example, to connect the review app to a test database, you could add the command <code>clever service link-addon &lt;addon-name&gt;</code>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>This template is under constant development to progressively simplify your workflow and make it more efficient. Eventually, this Action should work solely with inputs rather than command lines. In the meantime, feel free to <a href="https://github.com/CleverCloud/clever-cloud-review-app/issues/new">open an issue on the project</a> according to your needs.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://github.com/CleverCloud/clever-cloud-review-app" target="_blank" rel="noreferrer noopener">Check the template on GitHub</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading -->
<h2 class="wp-block-heading">Deploying from GitLab</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Our customers working on GitLab (as a SasS or self-hosted instance) have also expressed similar needs for automating their deployments. GitLab differs significantly from GitHub, with a much more DIY approach to CI/CD and different configurations. On GitLab, <a href="https://docs.gitlab.com/ee/ci/variables/predefined_variables.html#predefined-variables-for-merge-request-pipelines">there are no variables</a> for detecting the state of a Merge Request (open or closed), unlike GitHub. If we want to launch a job automatically when it closes, we'<a href="https://docs.gitlab.com/ee/ci/environments/#environment-states"> ll have to use the state of the environments</a> instead, and not that of the MRs.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>At Clever Cloud, we already had different deployment pipelines in place from GitLab for certain projects. We've unified and simplified them by creating pipeline components in the GitLab CI/CD catalog. The components replace <a href="https://docs.gitlab.com/ee/development/cicd/templates.html">GitLab's old template catalog</a>, and enable a modular pipeline to be built using inputs. No need to manually customize a script file anymore.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Our contribution to the catalog currently comprises four components:</p>
<!-- /wp:paragraph -->

<!-- wp:list {"ordered":true} -->
<ol><!-- wp:list-item -->
<li>Deploy in production;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Creating a review app from a Merge Request;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Update review app;</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Delete review app.</li>
<!-- /wp:list-item --></ol>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>The input values have been predefined to save you time when using them. These components can be used both on gitlab.com and on your self-hosted instance. There's nothing to modify in the project, but <a href="https://docs.gitlab.com/ee/ci/components/#use-a-gitlabcom-component-in-a-self-managed-instance">a few configurations of your instance to check</a>.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>In both cases, we advise you to test the manual triggering of components on your project first. We'll be adding more components as our customers' needs change, and are open to your proposals, to be submitted directly on the project dedicated to them.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://gitlab.com/explore/catalog/CleverCloud/clever-cloud-pipeline" target="_blank" rel="noreferrer noopener">Check the catalog on GitLab</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading {"level":3} -->
<h3 class="wp-block-heading">The best of both worlds: Heptapod</h3>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>If you use the GitLab Community Edition fork hosted on Clever Cloud, you'll benefit from the advantages of a GitLab as a Service offering, as well as hosting on European servers managed by a French company.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>The CI/CD pipeline catalog is already integrated into our Heptapod offer, enabling you to use the components directly in your project, with no instance configuration required.</p>
<!-- /wp:paragraph -->

<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"}} -->
<div class="wp-block-buttons"><!-- wp:button -->
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button" href="https://developers.clever-cloud.com/doc/addons/heptapod/" target="_blank" rel="noreferrer noopener">Check Heptapod doc</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->

<!-- wp:heading -->
<h2 class="wp-block-heading">A simplified pipeline</h2>
<!-- /wp:heading -->

<!-- wp:paragraph -->
<p>Clever Cloud integrates the build, install and run phases of your deployments. All you have to do is push your code, the process is automatic. By including deployment on Clever Cloud in your pipeline, you'll get logs of your application's deployment and its various stages directly in the runner's console. This means:</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>You can skip the build job in your pipeline - our platform already takes care of that.</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>You can monitor your pipeline and its logs directly from GitHub, GitLab or Heptapod, from start to finish.</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>Remember: if the deployment fails on Clever Cloud, your app will stay up with the last commit  you pushed before your update. It won't crash and your users won't notice anything. <a href="https://www.clever.cloud/blog/company/2022/09/06/whats-clever-in-our-cloud/" target="_blank" rel="noreferrer noopener">We got you!</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>As both projects are in constant development, we plan to go even further in adding flexibility and agility to your deployment processes. We remain open to your suggestions!</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" 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="(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>
		
		
			</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>
					
		
		
			</item>
		<item>
		<title>85 &#8211; RUST sort de Grafana dans l&#8217;anonymat en se faisant péter l&#8217;USB</title>
		<link>https://www.clever.cloud/podcast/85-rust-sort-de-grafana-dans-lanonymat-en-se-faisant-peter-lusb/</link>
		
		<dc:creator><![CDATA[Julien Durillon]]></dc:creator>
		<pubDate>Sat, 01 Apr 2023 05:38:05 +0000</pubDate>
				<category><![CDATA[github]]></category>
		<category><![CDATA[grafana]]></category>
		<category><![CDATA[Rust]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=7897</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/03/85-1-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="85 1 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/03/85-1-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-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 tempêtueux il est question de choix de partage de ses données personnelles, de mise à jour de Grafana et de la clé RSA SSH de GitHub, de sécurité, de clés USB explosive, de communication de crise et très largement de Rust avec divers outils basés sur ce beau langage. Comme c'est l'usage nous finirons en musique avec un choix aléatoire sur la programmation de la Webradio soumise par notre invité.</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/YRjwaEUf448" 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:44 - Pourquoi je préfère ne pas montrer ma tête<br> <a href="https://www.linkedin.com/feed/update/urn:li:activity:7039887987265961984/">https://www.linkedin.com/feed/update/urn:li:activity:7039887987265961984/</a> (Jérôme)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:34 Technopolice</p>
<!-- /wp:paragraph -->

<!-- wp:embed {"url":"https://technopolice.fr/","type":"wp-embed","providerNameSlug":"technopolice"} -->
<figure class="wp-block-embed is-type-wp-embed is-provider-technopolice wp-block-embed-technopolice"><div class="wp-block-embed__wrapper">
https://technopolice.fr/
</div></figure>
<!-- /wp:embed -->

<!-- wp:paragraph -->
<p>00:18:59 - Mise à jour sécu Grafana<br><a href="https://grafana.com/blog/2023/03/22/grafana-security-release-new-versions-with-security-fixes-for-cve-2023-1410/?mdm=social">https://grafana.com/blog/2023/03/22/grafana-security-release-new-versions-with-security-fixes-for-cve-2023-1410/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Pensez à mettre à jour !</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:20:28 - GitHub, mise à jour de la clé RSA SSH - <a href="https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/">https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>La clé ssh publique a changé. SSH va vous afficher une erreur, suivez la procédure pour mettre à jour la clé publique dans votre .ssh/authorized_keys</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Responsible disclosure</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:21:42 - Le hack sur Atlassian - <a href="https://lesjoiesducode.fr/atlassian-jira-bitbucket-trello-hack-donnees-exposees-en-ligne">https://lesjoiesducode.fr/atlassian-jira-bitbucket-trello-hack-donnees-exposees-en-ligne</a></p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Vol d’id d’un employé</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>L’employé avait publié par erreur ses identifiants</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Données de milliers d’employés diffusées en ligne</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:26:28 - Une clé usb explosive<br><a href="https://arstechnica.com/gadgets/2023/03/journalist-plugs-in-unknown-usb-drive-mailed-to-him-it-exploded-in-his-face/">https://arstechnica.com/gadgets/2023/03/journalist-plugs-in-unknown-usb-drive-mailed-to-him-it-exploded-in-his-face/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Journaliste équatorien a été blessé main et visage par une clé usb explosive.</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Attention à ne pas mettre n’importe quelle clé usb dans votre PC !</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:29:20 - Comment communiquer en cas de problème d'infra ? - <a href="https://community.fly.io/t/reliability-its-not-great/11253">https://community.fly.io/t/reliability-its-not-great/11253</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Comment est-ce qu’on communique sur ce genre de sujet pas facile ?</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Comment on construit une communauté et qu’on échange avec elle ?</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:34:33 : Les raisons d'être de Rust -  <a href="https://lafor.ge/rust/pourquoi/">https://lafor.ge/rust/pourquoi/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Et plus généralement tout le blog d'Akanoa !</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:37:27 WASM &amp; RIIR everywhere, va-t-on enfin se débarrasser de JS ?<br>- <a href="https://docs.docker.com/desktop/wasm/">https://docs.docker.com/desktop/wasm/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- docker qui fait tourner du docker directement ?</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:22 - un framework front prometteur en Rust<br>- <a href="https://github.com/leptos-rs/leptos">https://github.com/leptos-rs/leptos<br></a>- un framework front prometteur en Rust (no virtual dom, SSR &amp; hydratation included)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:02 - Tauri - <a href="https://tauri.app/">https://tauri.app/</a>&nbsp;</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- Un remplaçant d'Électron, plus léger et codé en Rust (bientôt mobile)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- <a href="https://www.youtube.com/watch?v=fMTtMRLUnIY&amp;t=111s">Migrating from Electron to Tauri</a><br>- C'est presque de la green tech (au runtime, pas à la compile)</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:51:30 - PopOver -  <a href="https://html.spec.whatwg.org/multipage/popover.html">https://html.spec.whatwg.org/multipage/popover.html</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:56:46 - Mevi - <a href="https://github.com/fasterthanlime/mevi">https://github.com/fasterthanlime/mevi</a> (Jérôme)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><a href="https://www.youtube.com/watch?v=DpnXaNkM9_M">I built my own memory profiler (in Rust, on Linux)</a></p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Faster than lime : Amos nous emmène bien plus loin que j'avais imaginé au départ :&nbsp; rabbit hole</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>https://github.com/fasterthanlime/mevi</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>01:02:00 : Musique de fin par Jérôme, la web radio  : <a href="https://www.djamradio.com/">https://www.djamradio.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>[Note du monteur : pour trancher la question de quel titre intégrer au générique, je décidais que l'élu serait le morceau à l'antenne quand je cliquerais sur le lien de Djamradio... Le sort a voulu que ce soit Machistador de -M-, un très bon titre de son 1er album le Baptême paru en 1997]</p>
<!-- /wp:paragraph -->

<!-- wp:embed {"url":"https://www.youtube.com/watch?v=w3sSGZlWLP4","type":"video","providerNameSlug":"youtube","responsive":true,"className":"wp-embed-aspect-4-3 wp-has-aspect-ratio"} -->
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://www.youtube.com/watch?v=w3sSGZlWLP4
</div></figure>
<!-- /wp:embed -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2023/03/85-1-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="85 1 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2023/03/85-1-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2023/03/85-1-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 tempêtueux il est question de choix de partage de ses données personnelles, de mise à jour de Grafana et de la clé RSA SSH de GitHub, de sécurité, de clés USB explosive, de communication de crise et très largement de Rust avec divers outils basés sur ce beau langage. Comme c'est l'usage nous finirons en musique avec un choix aléatoire sur la programmation de la Webradio soumise par notre invité.</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/YRjwaEUf448" 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:44 - Pourquoi je préfère ne pas montrer ma tête<br> <a href="https://www.linkedin.com/feed/update/urn:li:activity:7039887987265961984/">https://www.linkedin.com/feed/update/urn:li:activity:7039887987265961984/</a> (Jérôme)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:05:34 Technopolice</p>
<!-- /wp:paragraph -->

<!-- wp:embed {"url":"https://technopolice.fr/","type":"wp-embed","providerNameSlug":"technopolice"} -->
<figure class="wp-block-embed is-type-wp-embed is-provider-technopolice wp-block-embed-technopolice"><div class="wp-block-embed__wrapper">
https://technopolice.fr/
</div></figure>
<!-- /wp:embed -->

<!-- wp:paragraph -->
<p>00:18:59 - Mise à jour sécu Grafana<br><a href="https://grafana.com/blog/2023/03/22/grafana-security-release-new-versions-with-security-fixes-for-cve-2023-1410/?mdm=social">https://grafana.com/blog/2023/03/22/grafana-security-release-new-versions-with-security-fixes-for-cve-2023-1410/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Pensez à mettre à jour !</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:20:28 - GitHub, mise à jour de la clé RSA SSH - <a href="https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/">https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>La clé ssh publique a changé. SSH va vous afficher une erreur, suivez la procédure pour mettre à jour la clé publique dans votre .ssh/authorized_keys</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Responsible disclosure</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:21:42 - Le hack sur Atlassian - <a href="https://lesjoiesducode.fr/atlassian-jira-bitbucket-trello-hack-donnees-exposees-en-ligne">https://lesjoiesducode.fr/atlassian-jira-bitbucket-trello-hack-donnees-exposees-en-ligne</a></p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Vol d’id d’un employé</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>L’employé avait publié par erreur ses identifiants</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Données de milliers d’employés diffusées en ligne</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>00:26:28 - Une clé usb explosive<br><a href="https://arstechnica.com/gadgets/2023/03/journalist-plugs-in-unknown-usb-drive-mailed-to-him-it-exploded-in-his-face/">https://arstechnica.com/gadgets/2023/03/journalist-plugs-in-unknown-usb-drive-mailed-to-him-it-exploded-in-his-face/</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Journaliste équatorien a été blessé main et visage par une clé usb explosive.</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Attention à ne pas mettre n’importe quelle clé usb dans votre PC !</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:29:20 - Comment communiquer en cas de problème d'infra ? - <a href="https://community.fly.io/t/reliability-its-not-great/11253">https://community.fly.io/t/reliability-its-not-great/11253</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Comment est-ce qu’on communique sur ce genre de sujet pas facile ?</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>Comment on construit une communauté et qu’on échange avec elle ?</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:34:33 : Les raisons d'être de Rust -  <a href="https://lafor.ge/rust/pourquoi/">https://lafor.ge/rust/pourquoi/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>Et plus généralement tout le blog d'Akanoa !</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:37:27 WASM &amp; RIIR everywhere, va-t-on enfin se débarrasser de JS ?<br>- <a href="https://docs.docker.com/desktop/wasm/">https://docs.docker.com/desktop/wasm/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- docker qui fait tourner du docker directement ?</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:42:22 - un framework front prometteur en Rust<br>- <a href="https://github.com/leptos-rs/leptos">https://github.com/leptos-rs/leptos<br></a>- un framework front prometteur en Rust (no virtual dom, SSR &amp; hydratation included)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:46:02 - Tauri - <a href="https://tauri.app/">https://tauri.app/</a>&nbsp;</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- Un remplaçant d'Électron, plus léger et codé en Rust (bientôt mobile)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>- <a href="https://www.youtube.com/watch?v=fMTtMRLUnIY&amp;t=111s">Migrating from Electron to Tauri</a><br>- C'est presque de la green tech (au runtime, pas à la compile)</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:51:30 - PopOver -  <a href="https://html.spec.whatwg.org/multipage/popover.html">https://html.spec.whatwg.org/multipage/popover.html</a> (Julien)</p>
<!-- /wp:paragraph -->

<!-- wp:separator -->
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<!-- /wp:separator -->

<!-- wp:paragraph -->
<p>00:56:46 - Mevi - <a href="https://github.com/fasterthanlime/mevi">https://github.com/fasterthanlime/mevi</a> (Jérôme)</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p><a href="https://www.youtube.com/watch?v=DpnXaNkM9_M">I built my own memory profiler (in Rust, on Linux)</a></p>
<!-- /wp:paragraph -->

<!-- wp:list -->
<ul><!-- wp:list-item -->
<li>Faster than lime : Amos nous emmène bien plus loin que j'avais imaginé au départ :&nbsp; rabbit hole</li>
<!-- /wp:list-item -->

<!-- wp:list-item -->
<li>https://github.com/fasterthanlime/mevi</li>
<!-- /wp:list-item --></ul>
<!-- /wp:list -->

<!-- wp:paragraph -->
<p>01:02:00 : Musique de fin par Jérôme, la web radio  : <a href="https://www.djamradio.com/">https://www.djamradio.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>[Note du monteur : pour trancher la question de quel titre intégrer au générique, je décidais que l'élu serait le morceau à l'antenne quand je cliquerais sur le lien de Djamradio... Le sort a voulu que ce soit Machistador de -M-, un très bon titre de son 1er album le Baptême paru en 1997]</p>
<!-- /wp:paragraph -->

<!-- wp:embed {"url":"https://www.youtube.com/watch?v=w3sSGZlWLP4","type":"video","providerNameSlug":"youtube","responsive":true,"className":"wp-embed-aspect-4-3 wp-has-aspect-ratio"} -->
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://www.youtube.com/watch?v=w3sSGZlWLP4
</div></figure>
<!-- /wp:embed -->]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>#75 L&#8217;IAM de Github égare le rapport du BEA</title>
		<link>https://www.clever.cloud/podcast/75-liam-de-github-egare-le-rapport-du-bea/</link>
		
		<dc:creator><![CDATA[Julien Durillon]]></dc:creator>
		<pubDate>Wed, 28 Sep 2022 15:50:41 +0000</pubDate>
				<category><![CDATA[CPU]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[grafana]]></category>
		<category><![CDATA[HTTP3]]></category>
		<category><![CDATA[ovh]]></category>
		<category><![CDATA[UUID]]></category>
		<guid isPermaLink="false">https://www.clever-cloud.com/?post_type=podcast&#038;p=7182</guid>

					<description><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2022/07/75-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="75 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2022/07/75-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2022/07/75-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","className":"is-style-default"} -->
<figure class="wp-block-image size-large is-style-default"><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":705,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2021/03/arnaud-lefebvre-447x447.jpg" alt="arnaud_lefebvre" class="wp-image-705"/><figcaption class="wp-element-caption">Arnaud Leferbvre</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":6020,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2022/03/Manuel-2-447x447.jpg" alt="manuel_luzarreta" class="wp-image-6020"/><figcaption class="wp-element-caption">Manuel Lazarreta</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":7181,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2022/07/sylvain-wallez-447x447.jpg" alt="Sylvain_Wallez" class="wp-image-7181"/><figcaption class="wp-element-caption">Sylvain Wallez</figcaption></figure>
<!-- /wp:image --></figure>
<!-- /wp:gallery -->

<!-- wp:paragraph -->
<p>Dans ce bel épisode nous parlons de certificats qui traitres, d'une grosse fuite de données perso au Japon, des CPU au repos, du rapport du BEA-RI sur l'incendie de d'OVH de mars 2021, de Grafana qui ouvre son produit "On Call", de comment se couper, complètement, de sa vie numérique, de la nouvelle gestion des identités dans Github, des nouveaux formats UUID, de HTTP3 enfin standardisé après 5 ans de travaux, d'un site qui permet d'être Up-to-date avec les navigateurs Web et de la mort officielle d'Internet Explorer (enfin !). Nous finirons en roue libre et en musique.</p>
<!-- /wp:paragraph -->

<!-- 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/n0Pm7rt6d_o" 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:00 Introduction</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:01:25 Vos certificats vous trahissent (manu)<br><a href="https://crt.sh/" target="_blank" rel="noreferrer noopener">https://crt.sh/<br></a><a href="https://blog.wescale.fr/quand-vos-certificats-tls-vous-trahissent/" target="_blank" rel="noreferrer noopener">https://blog.wescale.fr/quand-vos-certificats-tls-vous-trahissent/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:30 Un employé d’une ville japonaise égare les DP de 400.000 personnes (Manu)<br><a href="https://gizmodo.com/amagasaki-personal-data-usb-lost-drunk-man-1849113016" target="_blank" rel="noreferrer noopener">https://gizmodo.com/amagasaki-personal-data-usb-lost-drunk-man-1849113016</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:15:08 What does an idle CPU do? (arnaud)<br><a href="https://manybutfinite.com/post/what-does-an-idle-cpu-do/" target="_blank" rel="noreferrer noopener">https://manybutfinite.com/post/what-does-an-idle-cpu-do/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:19:45 Rapport du BEA-RI sur l’incendie OVH Strasbourg (sylvain)<br><a href="https://lafibre.info/ovh-datacenter/incendie-ovh-strabourg/" target="_blank" rel="noreferrer noopener">https://lafibre.info/ovh-datacenter/incendie-ovh-strabourg/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:51 Grafana opensource son produit “on-call” (judu)<br><a href="https://github.com/grafana/oncall" target="_blank" rel="noreferrer noopener">https://github.com/grafana/oncall<br></a><a href="https://techcrunch.com/2022/06/14/grafana-open-sources-its-on-call-management-tool/?guccounter=1" target="_blank" rel="noreferrer noopener">https://techcrunch.com/2022/06/14/grafana-open-sources-its-on-call-management-tool/?guccounter=1<br></a>Très orienté vers Slack ?<br>Concurrent de Pager-Duty, mais il faut quand même se taper tout le setup et la maintenance.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:37:12 Comment se couper définitivement de sa vie numérique (Manu)<br><a href="https://shkspr.mobi/blog/2022/06/ive-locked-myself-out-of-my-digital-life/" target="_blank" rel="noreferrer noopener">https://shkspr.mobi/blog/2022/06/ive-locked-myself-out-of-my-digital-life/<br></a>Décès : <a href="https://legapass.com/" target="_blank" rel="noreferrer noopener">https://legapass.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:47:29 Github revoit sa gestion des identités / IAM (Julien)<br><a href="https://www.lemondeinformatique.fr/actualites/lire-github-revoit-sa-gestion-des-identites-et-acces-iam-87083.html" target="_blank" rel="noreferrer noopener">https://www.lemondeinformatique.fr/actualites/lire-github-revoit-sa-gestion-des-identites-et-acces-iam-87083.html<br></a>Basé sur Git, notamment pour l’auditabilité.<br>Entitlement</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:51:00 Nouveaux formats pour les UUID (Sylvain)<br><a href="https://uuid6.github.io/uuid6-ietf-draft/
">https://uuid6.github.io/uuid6-ietf-draft/<br></a>UUIDv6, v7, v8<br>V6, c’est un v1 mais mieux ordonné. (Basé sur ULID ?)<br>v7 , c’est v1/v6 mais basé sur un timestamp unix<br>V8, c’est yolo<br><a href="https://www.clever.cloud/blog/engineering/2015/05/20/why-auto-increment-is-a-terrible-idea/" target="_blank" rel="noreferrer noopener">https://www.clever.cloud/blog/engineering/2015/05/20/why-auto-increment-is-a-terrible-idea/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:59:19 HTTP/3 standardisé, après 5 ans de travaux !<br><a href="https://www.rfc-editor.org/rfc/rfc9114.html
">https://www.rfc-editor.org/rfc/rfc9114.html<br></a>C’est du binaire dans de l’UDP<br>Y’a un nouveau code 103 pour dire au client qu’il va y avoir du prefetch.<br>Pieter explain’s Tech : https://www.youtube.com/watch?v=y8xHJJWwJt4</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:04:54 Browser.fyi pour être à la page avec tous les navigateurs<br><a href="https://www.browsers.fyi/" target="_blank" rel="noreferrer noopener">https://www.browsers.fyi/ </a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:09:46 la musique de fin mar Manuel : Milky Way par Mord Fustang<br><a href="https://www.youtube.com/watch?v=E0VNtJtKFb0" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=E0VNtJtKFb0</a></p>
<!-- /wp:paragraph -->]]></description>
										<content:encoded><![CDATA[<p><img width="1920" height="1080" src="https://cdn.clever-cloud.com/uploads/2022/07/75-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="75 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2022/07/75-1.jpg 1920w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-300x169.jpg 300w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-1024x576.jpg 1024w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-768x432.jpg 768w, https://cdn.clever-cloud.com/uploads/2022/07/75-1-1536x864.jpg 1536w, https://cdn.clever-cloud.com/uploads/2022/07/75-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","className":"is-style-default"} -->
<figure class="wp-block-image size-large is-style-default"><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":705,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2021/03/arnaud-lefebvre-447x447.jpg" alt="arnaud_lefebvre" class="wp-image-705"/><figcaption class="wp-element-caption">Arnaud Leferbvre</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":6020,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2022/03/Manuel-2-447x447.jpg" alt="manuel_luzarreta" class="wp-image-6020"/><figcaption class="wp-element-caption">Manuel Lazarreta</figcaption></figure>
<!-- /wp:image -->

<!-- wp:image {"id":7181,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="https://cdn.clever-cloud.com/uploads/2022/07/sylvain-wallez-447x447.jpg" alt="Sylvain_Wallez" class="wp-image-7181"/><figcaption class="wp-element-caption">Sylvain Wallez</figcaption></figure>
<!-- /wp:image --></figure>
<!-- /wp:gallery -->

<!-- wp:paragraph -->
<p>Dans ce bel épisode nous parlons de certificats qui traitres, d'une grosse fuite de données perso au Japon, des CPU au repos, du rapport du BEA-RI sur l'incendie de d'OVH de mars 2021, de Grafana qui ouvre son produit "On Call", de comment se couper, complètement, de sa vie numérique, de la nouvelle gestion des identités dans Github, des nouveaux formats UUID, de HTTP3 enfin standardisé après 5 ans de travaux, d'un site qui permet d'être Up-to-date avec les navigateurs Web et de la mort officielle d'Internet Explorer (enfin !). Nous finirons en roue libre et en musique.</p>
<!-- /wp:paragraph -->

<!-- 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/n0Pm7rt6d_o" 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:00 Introduction</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:01:25 Vos certificats vous trahissent (manu)<br><a href="https://crt.sh/" target="_blank" rel="noreferrer noopener">https://crt.sh/<br></a><a href="https://blog.wescale.fr/quand-vos-certificats-tls-vous-trahissent/" target="_blank" rel="noreferrer noopener">https://blog.wescale.fr/quand-vos-certificats-tls-vous-trahissent/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:10:30 Un employé d’une ville japonaise égare les DP de 400.000 personnes (Manu)<br><a href="https://gizmodo.com/amagasaki-personal-data-usb-lost-drunk-man-1849113016" target="_blank" rel="noreferrer noopener">https://gizmodo.com/amagasaki-personal-data-usb-lost-drunk-man-1849113016</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:15:08 What does an idle CPU do? (arnaud)<br><a href="https://manybutfinite.com/post/what-does-an-idle-cpu-do/" target="_blank" rel="noreferrer noopener">https://manybutfinite.com/post/what-does-an-idle-cpu-do/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:19:45 Rapport du BEA-RI sur l’incendie OVH Strasbourg (sylvain)<br><a href="https://lafibre.info/ovh-datacenter/incendie-ovh-strabourg/" target="_blank" rel="noreferrer noopener">https://lafibre.info/ovh-datacenter/incendie-ovh-strabourg/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:28:51 Grafana opensource son produit “on-call” (judu)<br><a href="https://github.com/grafana/oncall" target="_blank" rel="noreferrer noopener">https://github.com/grafana/oncall<br></a><a href="https://techcrunch.com/2022/06/14/grafana-open-sources-its-on-call-management-tool/?guccounter=1" target="_blank" rel="noreferrer noopener">https://techcrunch.com/2022/06/14/grafana-open-sources-its-on-call-management-tool/?guccounter=1<br></a>Très orienté vers Slack ?<br>Concurrent de Pager-Duty, mais il faut quand même se taper tout le setup et la maintenance.</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:37:12 Comment se couper définitivement de sa vie numérique (Manu)<br><a href="https://shkspr.mobi/blog/2022/06/ive-locked-myself-out-of-my-digital-life/" target="_blank" rel="noreferrer noopener">https://shkspr.mobi/blog/2022/06/ive-locked-myself-out-of-my-digital-life/<br></a>Décès : <a href="https://legapass.com/" target="_blank" rel="noreferrer noopener">https://legapass.com/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:47:29 Github revoit sa gestion des identités / IAM (Julien)<br><a href="https://www.lemondeinformatique.fr/actualites/lire-github-revoit-sa-gestion-des-identites-et-acces-iam-87083.html" target="_blank" rel="noreferrer noopener">https://www.lemondeinformatique.fr/actualites/lire-github-revoit-sa-gestion-des-identites-et-acces-iam-87083.html<br></a>Basé sur Git, notamment pour l’auditabilité.<br>Entitlement</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:51:00 Nouveaux formats pour les UUID (Sylvain)<br><a href="https://uuid6.github.io/uuid6-ietf-draft/
">https://uuid6.github.io/uuid6-ietf-draft/<br></a>UUIDv6, v7, v8<br>V6, c’est un v1 mais mieux ordonné. (Basé sur ULID ?)<br>v7 , c’est v1/v6 mais basé sur un timestamp unix<br>V8, c’est yolo<br><a href="https://www.clever.cloud/blog/engineering/2015/05/20/why-auto-increment-is-a-terrible-idea/" target="_blank" rel="noreferrer noopener">https://www.clever.cloud/blog/engineering/2015/05/20/why-auto-increment-is-a-terrible-idea/</a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>00:59:19 HTTP/3 standardisé, après 5 ans de travaux !<br><a href="https://www.rfc-editor.org/rfc/rfc9114.html
">https://www.rfc-editor.org/rfc/rfc9114.html<br></a>C’est du binaire dans de l’UDP<br>Y’a un nouveau code 103 pour dire au client qu’il va y avoir du prefetch.<br>Pieter explain’s Tech : https://www.youtube.com/watch?v=y8xHJJWwJt4</p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:04:54 Browser.fyi pour être à la page avec tous les navigateurs<br><a href="https://www.browsers.fyi/" target="_blank" rel="noreferrer noopener">https://www.browsers.fyi/ </a></p>
<!-- /wp:paragraph -->

<!-- wp:paragraph -->
<p>01:09:46 la musique de fin mar Manuel : Milky Way par Mord Fustang<br><a href="https://www.youtube.com/watch?v=E0VNtJtKFb0" target="_blank" rel="noreferrer noopener">https://www.youtube.com/watch?v=E0VNtJtKFb0</a></p>
<!-- /wp:paragraph -->]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Github breaking changes that require your interaction</title>
		<link>https://www.clever.cloud/blog/features/2015/03/03/github-breaking-changes/</link>
		
		<dc:creator><![CDATA[Marc-Antoine Perennou]]></dc:creator>
		<pubDate>Tue, 03 Mar 2015 17:37:00 +0000</pubDate>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[oauth]]></category>
		<guid isPermaLink="false">https://www2.cleverapps.io/wp/blog/technology/2015/03/03/github-breaking-changes/</guid>

					<description><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="githubbreakingchangesbanner" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner.png 1400w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-300x116.png 300w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-1024x395.png 1024w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-768x296.png 768w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-1368x528.png 1368w" sizes="auto, (max-width: 1400px) 100vw, 1400px" /></p><p>A couple of days ago, Github made breaking changes regarding the way other companies can interact with github organisations.</p>
<p>Usually, this wouldn&#39;t mean anything to you and you wouldn&#39;t need to do anything, but this time, Github requires you to explicitly approve Clever Cloud in order for your github applications to work properly.</p>
<span id="more-2858"></span>

<p>If you want to be able to create new applications from one of your github organisation&#39;s repositories, or if you want a <code>git push</code> to github to launch a deployment on Clever Cloud, you have two available solutions:</p>
<ul>
<li>The recommended one: Go to <a href="https://github.com" rel="noopener noreferrer" target="_blank">github</a>,
click on the settings (the little cog) button at the top right of your screen and then click on
<code>Applications</code> in the right column. If your github account is linked to your Clever Cloud one, you should see a line
saying <code>Clever Cloud API</code> with a <code>View</code> button next to it. Click this <code>View</code> button. At the bottom of your screen, you
can now grant Clever Cloud access to your organisations, or request an admin to do it.</li>
<li>The &quot;simpler&quot; but not recommended one: Go to github, click on the settings button at the top right of your screen,
click on an organisation to access its settings, then click <code>Third-party access</code> and then <code>Remove restrictions</code>. Note
that this solution can have several security issues.</li>
</ul>
<p>As a side note, github now requires more rights to be enabled to have access to an organisation repositories. You can make sure the rights associated to your account are up to date by logging out and then logging in again using github login.</p>
<p>Once you&#39;ve done this, everything should work back as expected.</p>
]]></description>
										<content:encoded><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="githubbreakingchangesbanner" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner.png 1400w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-300x116.png 300w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-1024x395.png 1024w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-768x296.png 768w, https://cdn.clever-cloud.com/uploads/2021/08/githubbreakingchangesbanner-1368x528.png 1368w" sizes="auto, (max-width: 1400px) 100vw, 1400px" /></p><p>A couple of days ago, Github made breaking changes regarding the way other companies can interact with github organisations.</p>
<p>Usually, this wouldn&#39;t mean anything to you and you wouldn&#39;t need to do anything, but this time, Github requires you to explicitly approve Clever Cloud in order for your github applications to work properly.</p>
<span id="more-2858"></span>

<p>If you want to be able to create new applications from one of your github organisation&#39;s repositories, or if you want a <code>git push</code> to github to launch a deployment on Clever Cloud, you have two available solutions:</p>
<ul>
<li>The recommended one: Go to <a href="https://github.com" rel="noopener noreferrer" target="_blank">github</a>,
click on the settings (the little cog) button at the top right of your screen and then click on
<code>Applications</code> in the right column. If your github account is linked to your Clever Cloud one, you should see a line
saying <code>Clever Cloud API</code> with a <code>View</code> button next to it. Click this <code>View</code> button. At the bottom of your screen, you
can now grant Clever Cloud access to your organisations, or request an admin to do it.</li>
<li>The &quot;simpler&quot; but not recommended one: Go to github, click on the settings button at the top right of your screen,
click on an organisation to access its settings, then click <code>Third-party access</code> and then <code>Remove restrictions</code>. Note
that this solution can have several security issues.</li>
</ul>
<p>As a side note, github now requires more rights to be enabled to have access to an organisation repositories. You can make sure the rights associated to your account are up to date by logging out and then logging in again using github login.</p>
<p>Once you&#39;ve done this, everything should work back as expected.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>GitHub Login is Here!</title>
		<link>https://www.clever.cloud/blog/features/2014/12/03/login-via-github/</link>
		
		<dc:creator><![CDATA[Marc-Antoine Perennou]]></dc:creator>
		<pubDate>Wed, 03 Dec 2014 14:47:00 +0000</pubDate>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[release]]></category>
		<guid isPermaLink="false">https://www2.cleverapps.io/wp/blog/technology/2014/12/03/login-via-github/</guid>

					<description><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="github integration 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1.png 1400w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-300x116.png 300w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-1024x395.png 1024w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-768x296.png 768w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-1368x528.png 1368w" sizes="auto, (max-width: 1400px) 100vw, 1400px" /></p>As you may have noticed, Clever Cloud added <a href="http://github.com">GitHub</a> integration for signup and login a few days ago. You can now create an account or link your existing one to GitHub, and then login in one click.

<span id="more-2854"></span>

Besides an easier authentication, there is a few other smooth features :
<ul>
 	<li>One-click import of ssh keys from GitHub</li>
 	<li>Application creation from a GitHub repository</li>
 	<li>Automatic deployments of several apps via a push to GitHub</li>
</ul>
If you want to enable automatic deployment, it's easy: in your application information tab, if you have created your application from a GitHub one, you will see a new field, a secret for your GitHub application's settings:
<ol>
 	<li>Grab this secret and go to the GitHub repository settings.</li>
 	<li>Click on "add a service" and select "Clever Cloud" from the list.</li>
 	<li>Paste the secret</li>
</ol>
That's it, every Clever Cloud application created from this repository will be automatically deployed whenever you push to GitHub.

Note that we also support private GitHub repositories, you only need to add the <a href="https://github.com/CleverCloudDeployer">CleverCloudDeployer</a> user to your repository. Note that read only access is sufficient.

If you want to link Github to your actual "email" account, head up to your profile settings, and click on "Link you GitHub Account".

Give it a try:

<center>
<a class="bt3-btn bt3-btn-success" href="https://api.clever-cloud.com/v2/sessions/login/">Join with GitHub!</a></center>]]></description>
										<content:encoded><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="github integration 1" decoding="async" loading="lazy" srcset="https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1.png 1400w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-300x116.png 300w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-1024x395.png 1024w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-768x296.png 768w, https://cdn.clever-cloud.com/uploads/2021/08/github-integration-1-1368x528.png 1368w" sizes="auto, (max-width: 1400px) 100vw, 1400px" /></p>As you may have noticed, Clever Cloud added <a href="http://github.com">GitHub</a> integration for signup and login a few days ago. You can now create an account or link your existing one to GitHub, and then login in one click.

<span id="more-2854"></span>

Besides an easier authentication, there is a few other smooth features :
<ul>
 	<li>One-click import of ssh keys from GitHub</li>
 	<li>Application creation from a GitHub repository</li>
 	<li>Automatic deployments of several apps via a push to GitHub</li>
</ul>
If you want to enable automatic deployment, it's easy: in your application information tab, if you have created your application from a GitHub one, you will see a new field, a secret for your GitHub application's settings:
<ol>
 	<li>Grab this secret and go to the GitHub repository settings.</li>
 	<li>Click on "add a service" and select "Clever Cloud" from the list.</li>
 	<li>Paste the secret</li>
</ol>
That's it, every Clever Cloud application created from this repository will be automatically deployed whenever you push to GitHub.

Note that we also support private GitHub repositories, you only need to add the <a href="https://github.com/CleverCloudDeployer">CleverCloudDeployer</a> user to your repository. Note that read only access is sufficient.

If you want to link Github to your actual "email" account, head up to your profile settings, and click on "Link you GitHub Account".

Give it a try:

<center>
<a class="bt3-btn bt3-btn-success" href="https://api.clever-cloud.com/v2/sessions/login/">Join with GitHub!</a></center>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
