<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>jmanteau</title>
    <link>https://jmanteau.fr/</link>
    <description>Recent content on jmanteau</description>
    <generator>Hugo</generator>
    <language>fr-FR</language>
    <lastBuildDate>Fri, 19 Jun 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://jmanteau.fr/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Kéfir</title>
      <link>https://jmanteau.fr/posts/kefir/</link>
      <pubDate>Fri, 19 Jun 2026 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/kefir/</guid>
      <description>&lt;p&gt;Le kéfir de fruits (aussi appelé kéfir d&amp;rsquo;eau ou tibicos) est une boisson fermentée pétillante, légèrement acide, qui contient des bactéries lactiques et des levures vivantes. On la prépare chez soi avec un bocal, du sucre, des fruits et des grains de kéfir.&lt;/p&gt;&#xA;&lt;h2 id=&#34;un-peu-dhistoire&#34;&gt;Un peu d&amp;rsquo;histoire&lt;/h2&gt;&#xA;&lt;p&gt;On ne sait pas fixer avec précision l&amp;rsquo;origine du kéfir de fruits. Plusieurs hypothèses coexistent, et les recherches actuelles suggèrent qu&amp;rsquo;elles ne s&amp;rsquo;excluent pas mutuellement.&lt;/p&gt;</description>
    </item>
    <item>
      <title>AWS Services Listing</title>
      <link>https://jmanteau.fr/posts/aws-services-listing/</link>
      <pubDate>Fri, 22 Aug 2025 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/aws-services-listing/</guid>
      <description>&lt;p&gt;[Original 2019-10-26]&lt;/p&gt;&#xA;&lt;p&gt;[Updated 20250218 with the documentation]&lt;/p&gt;&#xA;&lt;h3 id=&#34;aws-services&#34;&gt;AWS Services&lt;/h3&gt;&#xA;&lt;p&gt;I needed an exhaustive and easy way to list all AWS Services.&lt;/p&gt;&#xA;&lt;p&gt;This is what I have done to achieve that.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Download latest botocore service defintion&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; wget https://github.com/boto/botocore/archive/refs/heads/develop.zip&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Create headers for output csv&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#cb4b16&#34;&gt;echo&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;\&amp;#34;ServiceFullName;ServiceShortName;ServiceAbbrevation;Documentation\&amp;#34;&amp;#34;&lt;/span&gt; &amp;gt; awsservices.csv&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Unzip inline only the service-2.json files and extract the services name with jq&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; unzip -l develop.zip | grep service-2.json | awk &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#39;{print $4}&amp;#39;&lt;/span&gt; | tr &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;\n&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34; &amp;#34;&lt;/span&gt; | xargs unzip -cqq develop.zip | jq -c &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#39;&amp;#34;\(.metadata.serviceFullName);\(.metadata.serviceAbbreviation);\(.metadata.serviceId);\(.documentation)&amp;#34;&amp;#39;&lt;/span&gt; | sort | uniq &amp;gt;&amp;gt; awsservices.csv&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Remove the dl file&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; rm develop.zip&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-gdscript3&#34; data-lang=&#34;gdscript3&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# And show the result&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &amp;gt;&lt;span style=&#34;color:#268bd2&#34;&gt;head&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;awsservices&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;csv&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;ServiceFullName;ServiceShortName;ServiceAbbrevation;Documentation&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS ARC - Zonal Shift;null;ARC Zonal Shift;&amp;lt;p&amp;gt;Welcome to the API Reference Guide for zonal shift and zonal autoshift in Amazon Route 53 Application Recovery Controller (Route 53 ARC).&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;You can start a zonal shift to move traffic for a load balancer resource away from an Availability Zone to help your application recover quickly from an impairment in an Availability Zone. For example, you can recover your application from a developer&amp;#39;s bad code deployment or from an Amazon Web Services infrastructure failure in a single Availability Zone.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;You can also configure zonal autoshift for supported load balancer resources. Zonal autoshift is a capability in Route 53 ARC where you authorize Amazon Web Services to shift away application resource traffic from an Availability Zone during events, on your behalf, to help reduce your time to recovery. Amazon Web Services starts an autoshift when internal telemetry indicates that there is an Availability Zone impairment that could potentially impact customers.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;To help make sure that zonal autoshift is safe for your application, you must also configure practice runs when you enable zonal autoshift for a resource. Practice runs start weekly zonal shifts for a resource, to shift traffic for the resource away from an Availability Zone. Practice runs help you to make sure, on a regular basis, that you have enough capacity in all the Availability Zones in an Amazon Web Services Region for your application to continue to operate normally when traffic for a resource is shifted away from one Availability Zone.&amp;lt;/p&amp;gt; &amp;lt;important&amp;gt; &amp;lt;p&amp;gt;Before you configure practice runs or enable zonal autoshift, we strongly recommend that you prescale your application resource capacity in all Availability Zones in the Region where your application resources are deployed. You should not rely on scaling on demand when an autoshift or practice run starts. Zonal autoshift, including practice runs, works independently, and does not wait for auto scaling actions to complete. Relying on auto scaling, instead of pre-scaling, can result in loss of availability.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;If you use auto scaling to handle regular cycles of traffic, we strongly recommend that you configure the minimum capacity of your auto scaling to continue operating normally with the loss of an Availability Zone. &amp;lt;/p&amp;gt; &amp;lt;/important&amp;gt; &amp;lt;p&amp;gt;Be aware that Route 53 ARC does not inspect the health of individual resources. Amazon Web Services only starts an autoshift when Amazon Web Services telemetry detects that there is an Availability Zone impairment that could potentially impact customers. In some cases, resources might be shifted away that are not experiencing impact.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;For more information about using zonal shift and zonal autoshift, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/r53recovery/latest/dg/what-is-route53-recovery.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Amazon Route 53 Application Recovery Controller Developer Guide&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS Account;null;Account;&amp;lt;p&amp;gt;Operations for Amazon Web Services Account Management&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS Amplify UI Builder;null;AmplifyUIBuilder;&amp;lt;p&amp;gt;The Amplify UI Builder API provides a programmatic interface for creating and configuring user interface (UI) component libraries and themes for use in your Amplify applications. You can then connect these UI components to an application&amp;#39;s backend Amazon Web Services resources.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;You can also use the Amplify Studio visual designer to create UI components and model data for an app. For more information, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.amplify.aws/console/adminui/intro&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Introduction&amp;lt;/a&amp;gt; in the &amp;lt;i&amp;gt;Amplify Docs&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.amplify.aws/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Amplify Framework&amp;lt;/a&amp;gt;. For more information about deploying an Amplify application to Amazon Web Services, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Amplify User Guide&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS Amplify;Amplify;Amplify;&amp;lt;p&amp;gt;Amplify enables developers to develop and deploy cloud-powered mobile and web apps. Amplify Hosting provides a continuous delivery and hosting service for web applications. For more information, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/amplify/latest/userguide/welcome.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Amplify Hosting User Guide&amp;lt;/a&amp;gt;. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.amplify.aws/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Amplify Framework.&amp;lt;/a&amp;gt; &amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS App Mesh;null;App Mesh;&amp;lt;p&amp;gt;AWS App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         control containerized microservices. App Mesh standardizes how your microservices&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         communicate, giving you end-to-end visibility and helping to ensure high-availability for&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         your applications.&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         &amp;lt;p&amp;gt;App Mesh gives you consistent visibility and network traffic controls for every&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         microservice in an application. You can use App Mesh with Amazon ECS&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         (using the Amazon EC2 launch type), Amazon EKS, and Kubernetes on AWS.&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         &amp;lt;note&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;            &amp;lt;p&amp;gt;App Mesh supports containerized microservice applications that use service discovery&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;            naming for their components. To use App Mesh, you must have a containerized application&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;            running on Amazon EC2 instances, hosted in either Amazon ECS, Amazon EKS, or Kubernetes on AWS. For&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;            more information about service discovery on Amazon ECS, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;http://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Service Discovery&amp;lt;/a&amp;gt; in the&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;               &amp;lt;i&amp;gt;Amazon Elastic Container Service Developer Guide&amp;lt;/i&amp;gt;. Kubernetes &amp;lt;code&amp;gt;kube-dns&amp;lt;/code&amp;gt; is supported.&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;            For more information, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;DNS&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;               for Services and Pods&amp;lt;/a&amp;gt; in the Kubernetes documentation.&amp;lt;/p&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;         &amp;lt;/note&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS App Mesh;null;App Mesh;&amp;lt;p&amp;gt;App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with Amazon Web Services Fargate, Amazon ECS, Amazon EKS, Kubernetes on Amazon Web Services, and Amazon EC2.&amp;lt;/p&amp;gt; &amp;lt;note&amp;gt; &amp;lt;p&amp;gt;App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-discovery.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Service Discovery&amp;lt;/a&amp;gt; in the &amp;lt;i&amp;gt;Amazon Elastic Container Service Developer Guide&amp;lt;/i&amp;gt;. Kubernetes &amp;lt;code&amp;gt;kube-dns&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;coredns&amp;lt;/code&amp;gt; are supported. For more information, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;DNS for Services and Pods&amp;lt;/a&amp;gt; in the Kubernetes documentation.&amp;lt;/p&amp;gt; &amp;lt;/note&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS App Runner;null;AppRunner;&amp;lt;fullname&amp;gt;App Runner&amp;lt;/fullname&amp;gt; &amp;lt;p&amp;gt;App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code to a running service in the Amazon Web Services Cloud in seconds. You don&amp;#39;t need to learn new technologies, decide which compute service to use, or understand how to provision and configure Amazon Web Services resources.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;App Runner connects directly to your container registry or source code repository. It provides an automatic delivery pipeline with fully managed operations, high performance, scalability, and security.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;For more information about App Runner, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/apprunner/latest/dg/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;App Runner Developer Guide&amp;lt;/a&amp;gt;. For release information, see the &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/apprunner/latest/relnotes/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;App Runner Release Notes&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt; To install the Software Development Kits (SDKs), Integrated Development Environment (IDE) Toolkits, and command line tools that you can use to access the API, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;http://aws.amazon.com/tools/&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Tools for Amazon Web Services&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt; &amp;lt;b&amp;gt;Endpoints&amp;lt;/b&amp;gt; &amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;For a list of Region-specific endpoints that App Runner supports, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;https://docs.aws.amazon.com/general/latest/gr/apprunner.html&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;App Runner endpoints and quotas&amp;lt;/a&amp;gt; in the &amp;lt;i&amp;gt;Amazon Web Services General Reference&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS AppConfig Data;null;AppConfigData;&amp;lt;p&amp;gt;AppConfig Data provides the data plane APIs your application uses to retrieve configuration data. Here&amp;#39;s how it works:&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;Your application retrieves configuration data by first establishing a configuration session using the AppConfig Data &amp;lt;a&amp;gt;StartConfigurationSession&amp;lt;/a&amp;gt; API action. Your session&amp;#39;s client then makes periodic calls to &amp;lt;a&amp;gt;GetLatestConfiguration&amp;lt;/a&amp;gt; to check for and retrieve the latest data available.&amp;lt;/p&amp;gt; &amp;lt;p&amp;gt;When calling &amp;lt;code&amp;gt;StartConfigurationSession&amp;lt;/code&amp;gt;, your code sends the following information:&amp;lt;/p&amp;gt; &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; &amp;lt;p&amp;gt;Identifiers (ID or name) of an AppConfig application, environment, and configuration profile that the session tracks.&amp;lt;/p&amp;gt; &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; &amp;lt;p&amp;gt;(Optional) The minimum amount of time the session&amp;#39;s client must wait between calls to &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt; &amp;lt;p&amp;gt;In response, AppConfig provides an &amp;lt;code&amp;gt;InitialConfigurationToken&amp;lt;/code&amp;gt; to be given to the session&amp;#39;s client and used the first time it calls &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt; for that session.&amp;lt;/p&amp;gt; &amp;lt;important&amp;gt; &amp;lt;p&amp;gt;This token should only be used once in your first call to &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;. You &amp;lt;i&amp;gt;must&amp;lt;/i&amp;gt; use the new token in the &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt; response (&amp;lt;code&amp;gt;NextPollConfigurationToken&amp;lt;/code&amp;gt;) in each subsequent call to &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;/important&amp;gt; &amp;lt;p&amp;gt;When calling &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;, your client code sends the most recent &amp;lt;code&amp;gt;ConfigurationToken&amp;lt;/code&amp;gt; value it has and receives in response:&amp;lt;/p&amp;gt; &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; &amp;lt;p&amp;gt; &amp;lt;code&amp;gt;NextPollConfigurationToken&amp;lt;/code&amp;gt;: the &amp;lt;code&amp;gt;ConfigurationToken&amp;lt;/code&amp;gt; value to use on the next call to &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; &amp;lt;p&amp;gt; &amp;lt;code&amp;gt;NextPollIntervalInSeconds&amp;lt;/code&amp;gt;: the duration the client should wait before making its next call to &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt;. This duration may vary over the course of the session, so it should be used instead of the value sent on the &amp;lt;code&amp;gt;StartConfigurationSession&amp;lt;/code&amp;gt; call.&amp;lt;/p&amp;gt; &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; &amp;lt;p&amp;gt;The configuration: the latest data intended for the session. This may be empty if the client already has the latest version of the configuration.&amp;lt;/p&amp;gt; &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt; &amp;lt;important&amp;gt; &amp;lt;p&amp;gt;The &amp;lt;code&amp;gt;InitialConfigurationToken&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;NextPollConfigurationToken&amp;lt;/code&amp;gt; should only be used once. To support long poll use cases, the tokens are valid for up to 24 hours. If a &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt; call uses an expired token, the system returns &amp;lt;code&amp;gt;BadRequestException&amp;lt;/code&amp;gt;.&amp;lt;/p&amp;gt; &amp;lt;/important&amp;gt; &amp;lt;p&amp;gt;For more information and to view example CLI commands that show how to retrieve a configuration using the AppConfig Data &amp;lt;code&amp;gt;StartConfigurationSession&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;GetLatestConfiguration&amp;lt;/code&amp;gt; API actions, see &amp;lt;a href=&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;gt;Retrieving the configuration&amp;lt;/a&amp;gt; in the &amp;lt;i&amp;gt;AppConfig User Guide&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;AWS AppSync;AWSAppSync;AppSync;&amp;lt;p&amp;gt;AppSync provides API actions for creating and interacting with data sources using GraphQL from your application.&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;aws-regions&#34;&gt;AWS Regions&lt;/h3&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-gdscript3&#34; data-lang=&#34;gdscript3&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Download latest botocore service defintion&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#268bd2&#34;&gt;wget&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;https&lt;/span&gt;://&lt;span style=&#34;color:#268bd2&#34;&gt;github&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;com&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;boto&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;botocore&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;archive&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;refs&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;heads&lt;/span&gt;/&lt;span style=&#34;color:#268bd2&#34;&gt;develop&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;zip&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#93a1a1;font-style:italic&#34;&gt;# Output the regions&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#268bd2&#34;&gt;unzip&lt;/span&gt; -&lt;span style=&#34;color:#268bd2&#34;&gt;l&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;develop&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;zip&lt;/span&gt; | &lt;span style=&#34;color:#268bd2&#34;&gt;grep&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;endpoints&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;json&lt;/span&gt; | &lt;span style=&#34;color:#268bd2&#34;&gt;awk&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#39;{print $4}&amp;#39;&lt;/span&gt; | &lt;span style=&#34;color:#268bd2&#34;&gt;tr&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;\n&lt;/span&gt;&lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#34; &amp;#34;&lt;/span&gt; \&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;| &lt;span style=&#34;color:#268bd2&#34;&gt;xargs&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;unzip&lt;/span&gt; -&lt;span style=&#34;color:#268bd2&#34;&gt;cqq&lt;/span&gt; &lt;span style=&#34;color:#268bd2&#34;&gt;develop&lt;/span&gt;.&lt;span style=&#34;color:#268bd2&#34;&gt;zip&lt;/span&gt; \&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;| &lt;span style=&#34;color:#268bd2&#34;&gt;jq&lt;/span&gt; -&lt;span style=&#34;color:#268bd2&#34;&gt;r&lt;/span&gt; &lt;span style=&#34;color:#2aa198&#34;&gt;&amp;#39;.partitions[0].regions | keys[]&amp;#39;&lt;/span&gt; | &lt;span style=&#34;color:#268bd2&#34;&gt;sort&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
    </item>
    <item>
      <title>The Rise of Immutable Linux Distributions</title>
      <link>https://jmanteau.fr/posts/the-rise-of-immutable-linux-distributions/</link>
      <pubDate>Tue, 12 Aug 2025 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/the-rise-of-immutable-linux-distributions/</guid>
      <description>&lt;br/&gt;&#xA;&lt;p&gt;Since the 2010s, the concept of immutable Linux distributions has steadily gained traction. This shift closely followed the rise of container technologies (particularly Docker) which prompted the industry to rethink how Linux systems should be built, maintained, and secured. Unlike traditional systems that rely on mutable filesystems and incremental package updates, &lt;strong&gt;immutable systems treat the OS as a single, read-only image that is updated atomically, not incrementally&lt;/strong&gt;.&lt;/p&gt;&#xA;&lt;p&gt;At Red Hat Summit 2025, Chris Wells (RHEL Product Marketing) summarized the shift:&lt;/p&gt;</description>
    </item>
    <item>
      <title>MicroVMs</title>
      <link>https://jmanteau.fr/posts/microvms-anintroduction/</link>
      <pubDate>Wed, 12 Feb 2025 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/microvms-anintroduction/</guid>
      <description>&lt;h1 id=&#34;microvms-an-introduction&#34;&gt;MicroVMs: an introduction&lt;/h1&gt;&#xA;&lt;p&gt;This article aims to explain the concept behind &lt;strong&gt;&amp;ldquo;MicroVMs&amp;rdquo;&lt;/strong&gt;.&#xA;MicroVMs combine container-like speed with VM-level isolation to securely manage high-density workloads. By leveraging minimalist hypervisors and hardware virtualization, they reduce the attack surface while providing near-instant startup times. AWS Firecracker exemplifies this approach, enabling the launch of hundreds of microVMs per second in serverless environments.&lt;/p&gt;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;&#xA;&lt;p&gt;A micro VM is a lightweight virtual machine that isolates an untrusted computing operation from a computer’s host operating system. This design allows multiple high-performance, secure workloads to run on one machine. It merges the security and isolation of traditional VMs with container-like resource usage.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating a VM Debian 12 Image for arm64 architecture targeting QEMU &amp; Vagrant usage with QEMU and Packer on MacOS</title>
      <link>https://jmanteau.fr/posts/unattended-installation-of-debian-mac-arm64/</link>
      <pubDate>Fri, 06 Sep 2024 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/unattended-installation-of-debian-mac-arm64/</guid>
      <description>&lt;h3 id=&#34;intro&#34;&gt;Intro&lt;/h3&gt;&#xA;&lt;p&gt;In this post, we&amp;rsquo;ll walk through the process of creating an unattended installation of Debian 12 for arm64 architecture using QEMU and Packer on an M1 Mac.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://developer.hashicorp.com/packer/docs/intro&#34;&gt;Packer&lt;/a&gt; is a community tool from Hashicorp that standardizes and automates the process of building system and container images for multiple platforms.&lt;/p&gt;&#xA;&lt;p&gt;The goal here is to generate a QEMU disk image, which can be used in a lab environment, leveraging the MacOS HVF (Hypervisor Framework) for optimal performance. Additionally, we&amp;rsquo;ll configure the image with passwordless sudo for ease in post-installation and day to day tasks, which is practical for lab use.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Matching IPs to Subnets in Python in an Efficient Way</title>
      <link>https://jmanteau.fr/posts/matching-ips-to-subnets-in-python-in-an-efficient-way/</link>
      <pubDate>Tue, 09 Apr 2024 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/matching-ips-to-subnets-in-python-in-an-efficient-way/</guid>
      <description>&lt;h3 id=&#34;introduction&#34;&gt;Introduction&lt;/h3&gt;&#xA;&lt;p&gt;If you work in networking, you&amp;rsquo;ve likely matched IP addresses to subnets. This helps figure out which server, workstation, or cloud instance belongs to a particular network or site.&lt;/p&gt;&#xA;&lt;p&gt;Many network engineers use simple methods for scripting this. Often, making the IP lookup process better can speed up a slow script significantly.&lt;/p&gt;&#xA;&lt;p&gt;In this post, we are going to see the most common libs in python to do IP lookup as well as compare their performance.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Custom Linux Image for Eve-NG Unetlab or PNETLab</title>
      <link>https://jmanteau.fr/posts/custom-linux-image-for-eve-ng-unetlab-or-pnetlab/</link>
      <pubDate>Sat, 30 Mar 2024 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/custom-linux-image-for-eve-ng-unetlab-or-pnetlab/</guid>
      <description>&lt;p&gt;Creating an image on a system with full internet access for use on an isolated network labbing hypervisor involves several steps.&lt;/p&gt;&#xA;&lt;p&gt;This guide will take you through the process, focusing on macOS as host for image creation.&lt;/p&gt;&#xA;&lt;h3 id=&#34;utilizing-qemu-for-image-creation&#34;&gt;Utilizing QEMU for Image Creation&lt;/h3&gt;&#xA;&lt;p&gt;QEMU, a powerful virtualization tool, enables the creation and management of virtual machines. For macOS users, QEMU 7.1 or newer integrates with Apple’s VMNET framework, offering enhanced networking capabilities without needing root access. &lt;code&gt;socket_vmnet&lt;/code&gt; is a recommended tool for those who prefer not to run QEMU as the root user, providing a seamless experience without the &lt;code&gt;com.apple.vm.networking&lt;/code&gt; entitlement.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cleaning up an AWS Glacier Vault: A Step-by-Step Guide</title>
      <link>https://jmanteau.fr/posts/delete-a-vault-in-aws-glacier/</link>
      <pubDate>Sun, 14 Jan 2024 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/delete-a-vault-in-aws-glacier/</guid>
      <description>&lt;p&gt;Recently, I embarked on a task that might sound simple but turned out to be quite intricate: migrating a vault full of archives from one AWS region to another. This process involved not only the migration but also the deletion of the old vault, a task that isn&amp;rsquo;t as straightforward as one might think. The AWS Management Console doesn&amp;rsquo;t provide a direct way to delete a vault with existing archives. So, I decided to document the process I followed, hoping it might help others facing similar challenges.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Introduction À La Cuisson Sous Vide</title>
      <link>https://jmanteau.fr/posts/introduction-a-la-cuisson-sous-vide/</link>
      <pubDate>Sun, 14 Jan 2024 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/introduction-a-la-cuisson-sous-vide/</guid>
      <description>&lt;h2 id=&#34;introduction-à-la-cuisson-sous-vide&#34;&gt;Introduction à la Cuisson Sous Vide&lt;/h2&gt;&#xA;&lt;p&gt;La cuisson sous vide, littéralement &amp;ldquo;sous vide cooking&amp;rdquo; en anglais, est une technique culinaire qui a gagné en popularité ces dernières années. Elle offre un contrôle précis sur la cuisson, que ce soit pour des steaks, des légumes, ou même des gros morceaux de viande. Cette méthode élimine les incertitudes des techniques traditionnelles, garantissant un résultat parfait à chaque fois.&lt;/p&gt;&#xA;&lt;p&gt;Utilisant cette technique depuis une dizaine d&amp;rsquo;années, j&amp;rsquo;ai régulièrement des questions sur celle-ci. Je mets donc ici une introduction rapide à cette méthode de cuisson.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Advent of Code 2023</title>
      <link>https://jmanteau.fr/posts/advent-of-code-2023/</link>
      <pubDate>Mon, 04 Dec 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/advent-of-code-2023/</guid>
      <description>&lt;h2 id=&#34;my-goals&#34;&gt;My Goals&lt;/h2&gt;&#xA;&lt;p&gt;I don&amp;rsquo;t know how I could have missed that but I never encountered &lt;a href=&#34;https://adventofcode.com/&#34;&gt;the Advent of Code&lt;/a&gt; event before this year, discovery done  thanks to a &lt;a href=&#34;https://github.com/antoinedelia&#34;&gt;colleague&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;As XKCD coined it, I was one of the &lt;a href=&#34;https://xkcd.com/1053/&#34;&gt;lucky 10 000&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I want to take the opportunity to do things &amp;ldquo;rights&amp;rdquo; ie:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Pytest&lt;/li&gt;&#xA;&lt;li&gt;Cookiecutter (added later)&lt;/li&gt;&#xA;&lt;li&gt;&amp;ldquo;Proper&amp;rdquo; things instead of the straighforward way. It means trying to document properly, to split into methods, to do things as pythonic as possible. Usage of non native libraries is valid.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;I will document in this post the main interesting things for each day and all code will be present on the &lt;a href=&#34;https://github.com/jmanteau/adventofcode2023&#34;&gt;Github Repo&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Moving to a New Python Tooling Stack: Ruff &amp; Pre-Commit</title>
      <link>https://jmanteau.fr/posts/moving-to-a-new-python-tooling-stack-ruff-pre-commit/</link>
      <pubDate>Thu, 23 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/moving-to-a-new-python-tooling-stack-ruff-pre-commit/</guid>
      <description>&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;: Ruff combines different tools like  linters, security analyzers, and formatters into one unique simple fast tool with a standard configuration.  Pre-commit streamlines git pre-commit hooks by standardizing configurations  and offering community-made hooks. Together, they greatly ease Python development, both individually and in a team setting.&lt;/p&gt;&#xA;&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;&#xA;&lt;figure&gt;&lt;img src=&#34;https://jmanteau.fr/posts/2023-11-23-09-03-moving-to-a-new-python-tooling-stack-ruff-pre-commit.assets/python.webp&#34; width=&#34;300&#34;&gt;&#xA;&lt;/figure&gt;&#xA;&#xA;&lt;p&gt;I&amp;rsquo;m coding in Python since 2006 (17 years !) and I have changed my tooling several times along with the ecosystem evolution.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Using 0.0.0.0 Instead of 127.0.0.1 in /etc/hosts</title>
      <link>https://jmanteau.fr/posts/using-0-0-0-0-instead-of-127-0-0-1-in-etc-hosts/</link>
      <pubDate>Wed, 22 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/using-0-0-0-0-instead-of-127-0-0-1-in-etc-hosts/</guid>
      <description>&lt;hr&gt;&#xA;&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;: The &lt;code&gt;/etc/hosts&lt;/code&gt; file in Unix-like systems maps hostnames to IP addresses for manual overrides or blocking websites. Using &lt;code&gt;0.0.0.0&lt;/code&gt; for blocking is more efficient than &lt;code&gt;127.0.0.1&lt;/code&gt;, as it leads to immediate connection failure without involving a round-trip to the local machine.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;The &lt;code&gt;/etc/hosts&lt;/code&gt; file in Unix and Unix-like operating systems, like Linux and macOS, is used to map hostnames to IP addresses.&lt;/p&gt;&#xA;&lt;p&gt;Prior to the widespread adoption of domain name systems (DNS), it was  the primary method for mapping hostnames to their corresponding IP  addresses. In modern usage, it often complements DNS, allowing for  manual overrides, local domain definitions, or for blocking unwanted  sites by redirecting them to addresses like &lt;code&gt;127.0.0.1&lt;/code&gt; or &lt;code&gt;0.0.0.0&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Streamlining Google Drive Downloads With a Zsh Snippet</title>
      <link>https://jmanteau.fr/posts/streamlining-google-drive-downloads-with-a-zsh-snippet/</link>
      <pubDate>Wed, 01 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/streamlining-google-drive-downloads-with-a-zsh-snippet/</guid>
      <description>&lt;p&gt;As a terminal user, I sometime find myself in situations where I need to download files from Google Drive directly into my local machine or a remote server. While Google Drive is a fantastic tool for storing and sharing files, it doesn&amp;rsquo;t provide a straightforward way to download files via the command line. This can be particularly cumbersome when working with headless servers or when you&amp;rsquo;re trying to automate your workflow.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Shell Utilities for Checking Certificates</title>
      <link>https://jmanteau.fr/posts/shell-utilities-for-checking-certificates/</link>
      <pubDate>Wed, 25 Oct 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/shell-utilities-for-checking-certificates/</guid>
      <description>&lt;p&gt;For those frequently examining SSL/TLS certificates, the &lt;code&gt;openssl&lt;/code&gt; command often becomes a recurring presence in the shell history. However, while &lt;code&gt;openssl&lt;/code&gt; is powerful, it often requires users to juggle between various parameters like host, servername, and port, not to mention the subtle annoyance of needing to provide just the host, rather than a more intuitive URL.&lt;/p&gt;&#xA;&lt;p&gt;Recognizing this, I&amp;rsquo;ve crafted a shell function/alias to streamline the process. &lt;strong&gt;This tool is designed to accept both hosts and URLs as parameters&lt;/strong&gt;, providing flexibility to the user. Moreover, it effortlessly handles ports, whether they&amp;rsquo;re explicitly defined in the host or embedded within the URL.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Watch-Like Snippet for Cisco IOS</title>
      <link>https://jmanteau.fr/posts/watch-like-snippet-for-cisco-ios/</link>
      <pubDate>Sat, 22 Jul 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/watch-like-snippet-for-cisco-ios/</guid>
      <description>&lt;p&gt;Cisco IOS nowadays have the &lt;code&gt;terminal shell&lt;/code&gt; command to allow the execution of basic shell command like grep.&lt;/p&gt;&#xA;&lt;p&gt;However the watch command is not present. The snippet below allow to reproduce the behaviour of the watch command.&lt;/p&gt;&#xA;&lt;p&gt;Here I&amp;rsquo;m checking the recent routes appearing in the vpnv4 family during 60s. You can adjust the 60 parameter if you want to have shorter/longer session.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;terminal shell&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;n=0&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;while true; do&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  let n++&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  sleep 1&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  show ip bgp vpnv4 all summary | grep &amp;#39; 00:0&amp;#39;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  if \[\[ $n -le 60 \]\]; then&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    echo $n&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  else&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    break;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  fi&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;done&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
    </item>
    <item>
      <title>The Facets of Ping</title>
      <link>https://jmanteau.fr/posts/the-facets-of-ping/</link>
      <pubDate>Fri, 03 Mar 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/the-facets-of-ping/</guid>
      <description>&lt;p&gt;This article aims to provide you different ways and tools around &amp;ldquo;Ping&amp;rdquo;. By ping, I mean the tooling using icmp to help test, solve and troubleshoot connectivity issues.&#xA;The section has been divided by &amp;ldquo;use cases&amp;rdquo; where the differents tools will be presented to solve a specific problem.&lt;/p&gt;&#xA;&lt;p&gt;My personal tools of trade are : ping, fping, mtr and &lt;a href=&#34;#mtraceroute&#34;&gt;mtraceroute&lt;/a&gt;. Others tools exists and are listed in the section &lt;a href=&#34;#others-tools&#34;&gt;Others Tools&lt;/a&gt;. In particular, you can check the &lt;a href=&#34;https://github.com/thibaut-probst/flyingroutes&#34;&gt;Flyingroutes&lt;/a&gt; project if you want to deep dive into how traceroute is working.&lt;/p&gt;</description>
    </item>
    <item>
      <title>[F5 LTM] Ratio Load Balancing Controlled Server Side</title>
      <link>https://jmanteau.fr/posts/f5-ltm-ratio-load-balancing-controlled-server-side/</link>
      <pubDate>Mon, 20 Feb 2023 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/f5-ltm-ratio-load-balancing-controlled-server-side/</guid>
      <description>&lt;p&gt;The initial idea of this scope come from an internal client who asked &amp;ldquo;can we have a way to control the ratio of the VIP and healthyness from a json present on the server&amp;rdquo; ?&lt;/p&gt;&#xA;&lt;p&gt;The usual methods to allow for this kind of interaction are:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;(2) Standard monitor can indeed check a json but cannot control the ratio (example 1)&lt;/li&gt;&#xA;&lt;li&gt;Dynamic Ratio Load Balancing can interact with the server but with SNMP or WMI and monitors almost all the server components like CPU, Memory and Processor but not a json file. We will not test this methode here.&lt;/li&gt;&#xA;&lt;li&gt;(3) External monitor allow for any kind of interaction with the system so let&amp;rsquo;s see how to create one.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;initial-setup-and-testing&#34;&gt;Initial setup and testing&lt;/h2&gt;&#xA;&lt;p&gt;For this test, let&amp;rsquo;s create a simple VIP&lt;/p&gt;</description>
    </item>
    <item>
      <title>Emoji Table in Mac Os</title>
      <link>https://jmanteau.fr/posts/emoji-table-in-mac-os/</link>
      <pubDate>Wed, 12 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/emoji-table-in-mac-os/</guid>
      <description>&lt;p&gt;Sometime you learn things by chance when doing a typo ! Hitting the sequence &lt;kbd&gt;Control (or Ctrl) ⌃&lt;/kbd&gt; + &lt;kbd&gt;Command (or Cmd) ⌘&lt;/kbd&gt; + &lt;kbd&gt;Space&lt;/kbd&gt; will show the following table so you can easily select/search an emoji :&lt;/p&gt;&#xA;&lt;br/&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;image-20220112172636065&#34; src=&#34;https://jmanteau.fr/uploads/2022/01/image-20220112172636065.png&#34;&gt;&#xA;&lt;br/&gt;&lt;/p&gt;&#xA;&lt;p&gt;This is the same kind of UI than on the iPhone.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Open Telnet Links on MacOS</title>
      <link>https://jmanteau.fr/posts/open-telnet-links-on-macos/</link>
      <pubDate>Mon, 10 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/open-telnet-links-on-macos/</guid>
      <description>&lt;p&gt;If you want to open a telnet:// link (for example on an Eve-NG lab) and you encounter the error  &lt;code&gt;MacOS: Launch Local Application Telnet Error – Could not create a new process and open a pseudo-tty&lt;/code&gt;, the easiest way is to follow this &lt;a href=&#34;https://support.zpesystems.com/portal/en/kb/articles/macos-launch-local-application-telnet-error-could-not-create-a-new-process-and-open-a-pseudo-tty&#34;&gt;link&lt;/a&gt; which consist in:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;# Disable Apple SIP (need admin rights / password) and reboot&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;csrutil disable &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;# Restart your Mac, after apple logo appears, press the keys CMD+r&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;reboot&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;#Mount file systems as below: (Note: After the reboot, you system will go back to read-write.) &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo mount -uw / &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;#Get current installed telnet application PATH, example: /usr/local/bin/telnet if you installed in standard Homebrew path&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;which telnet &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;#Create symlink to telnet PATH &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo ln -s /usr/local/bin/telnet /usr/bin/ &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;reboot&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;# Reactivate Apple SIP&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;csrutil enable &#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;strong&gt;However&lt;/strong&gt; if you &lt;strong&gt;cannot&lt;/strong&gt; follow this (Enterprise Managed MacOS for example), you can use &lt;a href=&#34;https://iterm2.com/&#34;&gt;iTerm2&lt;/a&gt; as telnet link handler and modify the binary used:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Exporting iTerm2 Log to an HTML Page to Preserve Colors</title>
      <link>https://jmanteau.fr/posts/exporting-iterm2-log-to-an-html-page-to-preserve-colors/</link>
      <pubDate>Sun, 09 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/exporting-iterm2-log-to-an-html-page-to-preserve-colors/</guid>
      <description>&lt;p&gt;You first have to save your session log:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;image-20220109210734153&#34; src=&#34;https://jmanteau.fr/uploads/2022/01/image-20220109210734153.png&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Do not forget to save it as RTF to keep the formatting.&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;image-20220109210858892&#34; src=&#34;https://jmanteau.fr/uploads/2022/01/image-20220109210858892.png&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Then you use the texutil command:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;❯ textutil -convert html *.rtf&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can find an example of the render &lt;a href=&#34;https://jmanteau.github.io/evpn-cicd-arista-containerlab/tinylabexample.html&#34;&gt;here&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Silent Coaching</title>
      <link>https://jmanteau.fr/posts/silent-coaching/</link>
      <pubDate>Sat, 20 Nov 2021 20:54:58 +0100</pubDate>
      <guid>https://jmanteau.fr/posts/silent-coaching/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Silent Coaching&lt;/strong&gt; is way to find answers/leads to a question you have if do not have any people acting as coach to guide toward your personal answers to it.&lt;/p&gt;&#xA;&lt;p&gt;This can be used in one of two ways: you can either ask a friend to read you the questions or you can read them to yourself.&lt;/p&gt;&#xA;&lt;p&gt;Either way, you may find it useful to write down your answers, and particularly those to questions 16 to 19. It should take you no more than 20 minutes to work through.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Public DNS Servers (Valid 22/03/2017)</title>
      <link>https://jmanteau.fr/posts/2017-03-22-public-dns-servers-valid-22032017/</link>
      <pubDate>Wed, 22 Mar 2017 20:04:39 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/2017-03-22-public-dns-servers-valid-22032017/</guid>
      <description>&lt;p&gt;For my reference and if it can useful to someone else, here is a list of public DNS servers to adress.&lt;/p&gt;&#xA;&lt;p&gt;Level3&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  209.244.0.3&#xA;&#xA;&#xA;  209.244.0.4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Verisign&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  64.6.64.6&#xA;&#xA;&#xA;  64.6.65.6&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Google&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  8.8.8.8&#xA;&#xA;&#xA;  8.8.4.4&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;DNS.WATCH&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  84.200.69.80&#xA;&#xA;&#xA;  84.200.70.40&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Comodo Secure DNS&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  8.26.56.26&#xA;&#xA;&#xA;  8.20.247.20&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;OpenDNS Home&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  208.67.222.222&#xA;&#xA;&#xA;  208.67.220.220&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;DNS Advantage&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  156.154.70.1&#xA;&#xA;&#xA;  156.154.71.1&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Norton ConnectSafe&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  199.85.126.10&#xA;&#xA;&#xA;  199.85.127.10&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;GreenTeamDNS&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  81.218.119.11&#xA;&#xA;&#xA;  209.88.198.133&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;SafeDNS&lt;/p&gt;</description>
    </item>
    <item>
      <title>Plov</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/plov/</link>
      <pubDate>Sun, 26 Oct 2014 16:54:31 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/plov/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Central Asian&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;plov&#34;&gt;Plov&lt;/h3&gt;&#xA;&lt;p&gt;C’est une spécialité d’Asie centrale (surtout consommée en Ouzbékistan et au Tadjikistan, le plov est un plat à base de riz sauté, de légumes (pois chiche, carotte, ail), de viande de mouton ou de bœuf, et d’épices.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 1 bocal&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;500 g de riz basmati&lt;/li&gt;&#xA;&lt;li&gt;6 grandes carrottes coupées en julienne&lt;/li&gt;&#xA;&lt;li&gt;2 grands oignons émincés&lt;/li&gt;&#xA;&lt;li&gt;3-4 oignons verts (tige pour la décoration et bulbe émincés et ajouter avec les oignons)&lt;/li&gt;&#xA;&lt;li&gt;1 kg de boeuf émincé&lt;/li&gt;&#xA;&lt;li&gt;1c s huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;QS sel&lt;/li&gt;&#xA;&lt;li&gt;1 cc poivre noir&lt;/li&gt;&#xA;&lt;li&gt;1 cc de coriandre&lt;/li&gt;&#xA;&lt;li&gt;2 cc cumin&lt;/li&gt;&#xA;&lt;li&gt;1 cc curcuma&lt;/li&gt;&#xA;&lt;li&gt;3 cs de baies séchées (soit raisins secs, goji, cranberries, etc…)&lt;/li&gt;&#xA;&lt;li&gt;1 tête d’ail (enlever la première couche, et couper le haut de l’ail en gardant l’ail entier)&lt;/li&gt;&#xA;&lt;li&gt;1 piment sec (facultatif)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tarte Tatin</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/tarte-tatin/</link>
      <pubDate>Mon, 29 Sep 2014 19:07:44 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/tarte-tatin/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Apples&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;tarte-tatin&#34;&gt;Tarte Tatin&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 1 tarte de 21 cm&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;200 g de pâte feuilletée ou de pâte brisée&lt;/li&gt;&#xA;&lt;li&gt;12 pommes (gala ou pommes qui résistent à la cuisson) environ&lt;/li&gt;&#xA;&lt;li&gt;120 g de sucre&lt;/li&gt;&#xA;&lt;li&gt;90 g de beurre&lt;/li&gt;&#xA;&lt;li&gt;1 moule à manquer&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Préparer les pommes. Les couper en quartiers et les éplucher et vider le centre.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Dans une grande poêle à bord haut, mettre 40g de beurre et 50g de sucre sur les proportions indiquées plus haut. Placer sur feu chaud. Avec une cuillere en bois ou encore mieux, en secouant la poêle et en les faisant sauter, cuire les pommes. Le feu étant fort, il faut surveiller mais cela ne risque pas de brûler car l’eau que rendent les pommes empêche de brûler le caramel. Mais il faut rester présent! Les pommes doivent être tendres et légèrement caramélisées. Laisser refroidir hors du feu, toujours dans la poêle.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Duo De Gaspacho Et Ses Crevettes Sautées</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/duo-de-gaspacho-et-ses-crevettes-sautees/</link>
      <pubDate>Sat, 20 Sep 2014 16:18:53 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/duo-de-gaspacho-et-ses-crevettes-sautees/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Hot and Cold&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;duo-de-gaspacho-et-ses-crevettes-sautées&#34;&gt;Duo De Gaspacho Et Ses Crevettes Sautées&lt;/h3&gt;&#xA;&lt;p&gt;Un chaud froid d’enfer ! Température et épices, tout en contraste.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 1 bocal&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Crevettes et leur marinade:&lt;/strong&gt;&lt;/li&gt;&#xA;&lt;li&gt;16 grosses crevettes coupées en papillon&lt;/li&gt;&#xA;&lt;li&gt;1 citron vert pressé&lt;/li&gt;&#xA;&lt;li&gt;3 cs d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;2 cs de sauce soja&lt;/li&gt;&#xA;&lt;li&gt;2 gousses d’ail émincée&lt;/li&gt;&#xA;&lt;li&gt;2 feuilles de laurier&lt;/li&gt;&#xA;&lt;li&gt;1c c de grain de coriandre&lt;/li&gt;&#xA;&lt;li&gt;1 cc de cumin&lt;/li&gt;&#xA;&lt;li&gt;1 cc de paprika&lt;/li&gt;&#xA;&lt;li&gt;1 cc de gingembre&lt;/li&gt;&#xA;&lt;li&gt;1 cc de 5 baies&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Gaspacho de petits pois:&lt;/strong&gt;&lt;/li&gt;&#xA;&lt;li&gt;250 g de petits pois congelés&lt;/li&gt;&#xA;&lt;li&gt;5 c l d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;5 c l de crème fraiche&lt;/li&gt;&#xA;&lt;li&gt;25 c l de bouillon de volaille&lt;/li&gt;&#xA;&lt;li&gt;3 feuilles de menthe&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Gaspacho de tomates:&lt;/strong&gt;&lt;/li&gt;&#xA;&lt;li&gt;3 tomate mure (ou l’équivalent en conserve)&lt;/li&gt;&#xA;&lt;li&gt;Eau glacée&lt;/li&gt;&#xA;&lt;li&gt;Tortilla de maïs épicées&lt;/li&gt;&#xA;&lt;li&gt;1/2 concombre, épluché&lt;/li&gt;&#xA;&lt;li&gt;1 piment vert doux&lt;/li&gt;&#xA;&lt;li&gt;1 poivron grillé avec sa peau enlevé&lt;/li&gt;&#xA;&lt;li&gt;1 oignon rouge haché&lt;/li&gt;&#xA;&lt;li&gt;1 avocat, coupé en dés&lt;/li&gt;&#xA;&lt;li&gt;QS tabasco&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Oignons Marinés (Pickled Onions)</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/oignons-marines-pickled-onions/</link>
      <pubDate>Sun, 07 Sep 2014 14:10:02 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/oignons-marines-pickled-onions/</guid>
      <description>&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Pickling&lt;/strong&gt;&#xA;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;oignons-marinés-pickled-onions&#34;&gt;Oignons Marinés (Pickled Onions)&lt;/h3&gt;&#xA;&lt;p&gt;Les épices se font à l’inspiration du moment (gingembre, cumin, piment, muscade, etc …)&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 1 bocal&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;170 ml vinaigre de cidre&lt;/li&gt;&#xA;&lt;li&gt;170 ml vinaigre blanc&lt;/li&gt;&#xA;&lt;li&gt;1 jus d’un citron vert&lt;/li&gt;&#xA;&lt;li&gt;100 g de sucre&lt;/li&gt;&#xA;&lt;li&gt;1 cc sel&lt;/li&gt;&#xA;&lt;li&gt;3 petits piments&lt;/li&gt;&#xA;&lt;li&gt;1 cs de 5 baies&lt;/li&gt;&#xA;&lt;li&gt;2 oignons rouges&lt;/li&gt;&#xA;&lt;li&gt;3 petites branches de thym&lt;/li&gt;&#xA;&lt;li&gt;1 baton de cannelle&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Gigot D’agneau Épicé À La Sauce Kiwi</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/gigot-dagneau-epice-a-la-sauce-kiwi/</link>
      <pubDate>Sun, 31 Aug 2014 19:03:55 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/gigot-dagneau-epice-a-la-sauce-kiwi/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Opposite Side of the World&lt;/strong&gt; ce qui pour la France donne la Nouvelle Zélande&lt;/p&gt;&#xA;&lt;h3 id=&#34;gigot-dagneau-épicé-à-la-sauce-kiwi&#34;&gt;Gigot D’agneau Épicé À La Sauce Kiwi&lt;/h3&gt;&#xA;&lt;p&gt;L’agneau est un aliment fondamental pour les Néo-Zélandais et les Australiens. Il règne sur les tables familiales depuis des décennies. La cuisine de l’agneau à la mode néo-zélandaise est à la fois classique, originale et multiculturelle. Les Néo-Zélandais cuisinent l’agneau en rôti traditionnel, mariné, cuit au barbecue, en saucisses assaisonnées ou encore en feuilletés à la saucisse d’agneau, pour ne citer que quelques exemples.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Confiture de melon à la cannelle</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/confiture-de-melon-a-la-cannelle/</link>
      <pubDate>Mon, 25 Aug 2014 19:18:24 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/confiture-de-melon-a-la-cannelle/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Melons&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;confiture-de-melon-à-la-cannelle&#34;&gt;Confiture de melon à la cannelle&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1,2 kg de dés de melon&lt;/li&gt;&#xA;&lt;li&gt;le jus d’1 citron,&lt;/li&gt;&#xA;&lt;li&gt;600 g de sucre&lt;/li&gt;&#xA;&lt;li&gt;2 cs de miel d’acacia&lt;/li&gt;&#xA;&lt;li&gt;2 cc de cannelle en poudre&lt;/li&gt;&#xA;&lt;li&gt;1 g d’agar-agar (1/2 cc)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Retirer la peau et les pépins et faire macérer le melon en morceaux avec le sucre, le citron, la cannelle et le miel toute une nuit.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tarte Citron Meringuée (La)</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/tarte-citron-meringuee-la/</link>
      <pubDate>Sun, 17 Aug 2014 17:24:17 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/tarte-citron-meringuee-la/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Your Favorites&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;tarte-citron-meringuée-la&#34;&gt;Tarte Citron Meringuée (La)&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 8 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Creme au citron&lt;/em&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;4 cs à s. de Maïzena&lt;/li&gt;&#xA;&lt;li&gt;Jus et zeste râpé de 4 citrons&lt;/li&gt;&#xA;&lt;li&gt;50 à 100 g de sucre&lt;/li&gt;&#xA;&lt;li&gt;3 jaune œufs&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;em&gt;Meringue&lt;/em&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;5 blanc d’oeufs&lt;/li&gt;&#xA;&lt;li&gt;125 ml eau&lt;/li&gt;&#xA;&lt;li&gt;310 g sucre&lt;/li&gt;&#xA;&lt;li&gt;Sel&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;em&gt;Pâte sablée&lt;/em&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;250 g de farine&lt;/li&gt;&#xA;&lt;li&gt;125 g de beurre&lt;/li&gt;&#xA;&lt;li&gt;75 g de sucre&lt;/li&gt;&#xA;&lt;li&gt;1 œuf&lt;/li&gt;&#xA;&lt;li&gt;1 pincée de sel&lt;/li&gt;&#xA;&lt;li&gt;5 cl eau (ou lait)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Porc Tonkatsu</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/porc-tonkatsu/</link>
      <pubDate>Sun, 10 Aug 2014 14:48:55 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/porc-tonkatsu/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Breading/Dredging&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;porc-tonkatsu&#34;&gt;Porc Tonkatsu&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;p&gt;Pour le porc :&lt;/p&gt;&#xA;&lt;p&gt;2 escalopes de porc assez fines&lt;/p&gt;&#xA;&lt;p&gt;2 c. à café de purée d’ail&lt;/p&gt;&#xA;&lt;p&gt;Farine&lt;/p&gt;&#xA;&lt;p&gt;1 oeuf&lt;/p&gt;&#xA;&lt;p&gt;Panko (chapelure grossière)&lt;/p&gt;&#xA;&lt;p&gt;1/2 litre d’huile de friture&lt;/p&gt;&#xA;&lt;p&gt;Sel et poivre du moulin&lt;/p&gt;&#xA;&lt;p&gt;Pour servir :&lt;/p&gt;&#xA;&lt;p&gt;Sauce tonkatsu (recette maison ci dessous)&lt;/p&gt;&#xA;&lt;p&gt;200 grammes de riz blanc cuit&lt;/p&gt;&#xA;&lt;p&gt;1/4 de chou chinois émincé&lt;/p&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Oter du porc les éventuels morceaux de peau ou de graisse restants. Aplatir les morceaux avec un rouleau à pâtisserie en tapant dessus.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tarte aux tomates et aux oignons caramélisés</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/tarte-aux-tomates-et-aux-oignons-caramelises/</link>
      <pubDate>Sun, 10 Aug 2014 14:48:51 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/tarte-aux-tomates-et-aux-oignons-caramelises/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Clean Eating&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Cette tarte à la tomate, moutarde, oignons caramélisés est une pure merveille et un grand classique de l’été ! Ne faites pas l’impasse sur les oignons caramélisés car ils apportent un réel plus à cette tarte.&lt;/p&gt;&#xA;&lt;h3 id=&#34;tarte-aux-tomates-et-aux-oignons-caramélisés&#34;&gt;Tarte aux tomates et aux oignons caramélisés&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 1 tarte&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 pâte feuilletée&lt;/li&gt;&#xA;&lt;li&gt;2 oignons moyens&lt;/li&gt;&#xA;&lt;li&gt;2 cuil. à soupe d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;1 cuil. à soupe de vinaigre&lt;/li&gt;&#xA;&lt;li&gt;1 cuil. à soupe rase de sucre roux&lt;/li&gt;&#xA;&lt;li&gt;Fleur de sel&lt;/li&gt;&#xA;&lt;li&gt;8 petites tomates ou 4 grosses&lt;/li&gt;&#xA;&lt;li&gt;Sel fin&lt;/li&gt;&#xA;&lt;li&gt;Un peu de lait&lt;/li&gt;&#xA;&lt;li&gt;1 boule de mozzarella&lt;/li&gt;&#xA;&lt;li&gt;céréales (boulgour ou quinoa)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Risotto Aux Asperges Et Noix</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/risotto-aux-asperges-et-noix/</link>
      <pubDate>Sun, 10 Aug 2014 14:48:44 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/risotto-aux-asperges-et-noix/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;From your pantry&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;risotto-aux-asperges-et-noix&#34;&gt;Risotto Aux Asperges Et Noix&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 bocal d’asperges vertes (100g égoutté)&lt;/li&gt;&#xA;&lt;li&gt;1 boite de champignon (115g égoutté)&lt;/li&gt;&#xA;&lt;li&gt;1 boite de mais (140g égoutté)&lt;/li&gt;&#xA;&lt;li&gt;50 g de cerneaux de noix&lt;/li&gt;&#xA;&lt;li&gt;1 oignon rouge&lt;/li&gt;&#xA;&lt;li&gt;1 échalote&lt;/li&gt;&#xA;&lt;li&gt;1/2 verre de vin blanc&lt;/li&gt;&#xA;&lt;li&gt;500 ml de bouillon de légumes&lt;/li&gt;&#xA;&lt;li&gt;160 g de riz arborio&lt;/li&gt;&#xA;&lt;li&gt;20 g de parmesan&lt;/li&gt;&#xA;&lt;li&gt;2c s de mascarpone&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Californian Benedict Eggs</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/californian-benedict-eggs/</link>
      <pubDate>Tue, 08 Jul 2014 19:44:35 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/californian-benedict-eggs/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;‘Murica&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;californian-benedict-eggs&#34;&gt;Californian Benedict Eggs&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;p&gt;Benedicts Egg&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 avocat&lt;/li&gt;&#xA;&lt;li&gt;2 oeufs&lt;/li&gt;&#xA;&lt;li&gt;2 tranches de bacon&lt;/li&gt;&#xA;&lt;li&gt;1 muffin&lt;/li&gt;&#xA;&lt;li&gt;fromage rapé&lt;/li&gt;&#xA;&lt;li&gt;2 tomates&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Hashbrowns&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;3 pommes de terre&lt;/li&gt;&#xA;&lt;li&gt;1 oignon&lt;/li&gt;&#xA;&lt;li&gt;huile d’olive&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Sauce Hollandaise&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 jaune d’oeuf&lt;/li&gt;&#xA;&lt;li&gt;1 cc eau (env 10g)&lt;/li&gt;&#xA;&lt;li&gt;1 cc jus de citron (env 10g)&lt;/li&gt;&#xA;&lt;li&gt;110 g beurre&lt;/li&gt;&#xA;&lt;li&gt;1 pincée piment de cayenne&lt;/li&gt;&#xA;&lt;li&gt;sel&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Escalope Milanaise</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/escalope-milanaise/</link>
      <pubDate>Mon, 30 Jun 2014 18:59:48 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/escalope-milanaise/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : **Tenderizing  **&lt;/p&gt;&#xA;&lt;p&gt;Pour le pesto présent sur les pâtes, allez voir la recette &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/pesto-alla-genovese/&#34;&gt;Pesto Alla Genovese&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;escalope-milanaise&#34;&gt;Escalope Milanaise&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;4 escalopes de veau&lt;/li&gt;&#xA;&lt;li&gt;2 œufs&lt;/li&gt;&#xA;&lt;li&gt;100 g de farine&lt;/li&gt;&#xA;&lt;li&gt;100 g de parmesan râpé&lt;/li&gt;&#xA;&lt;li&gt;200 g de biscottes (ou de panko, ou de chapelure)&lt;/li&gt;&#xA;&lt;li&gt;huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;sel, poivre&lt;/li&gt;&#xA;&lt;li&gt;1 citron&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Si vous n’utilisez pas de panko ou de chapelure toute prête, préparez la chapelure en mixant vos biscottes jusqu’à obtenir une poudre légère.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pesto Alla Genovese</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/pesto-alla-genovese/</link>
      <pubDate>Mon, 30 Jun 2014 18:59:42 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/pesto-alla-genovese/</guid>
      <description>&lt;h3 id=&#34;pesto-alla-genovese&#34;&gt;Pesto Alla Genovese&lt;/h3&gt;&#xA;&lt;p&gt;Astuce: tu peux mettre le pesto à congeler dans un bac à glaçons et démouler un cube dans les pâtes chaudes !&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;2 bouquets de basilic&lt;/li&gt;&#xA;&lt;li&gt;parmesan et/ou pecorino&lt;/li&gt;&#xA;&lt;li&gt;1 à 2 gousse d’ail&lt;/li&gt;&#xA;&lt;li&gt;gros sel&lt;/li&gt;&#xA;&lt;li&gt;20 g pignons de pin&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Tu effeuilles et tu déchires à la main (important) deux bouquets de basilic. A la main pour éviter que tes feuilles noircissent trop et pour permettre une meilleure exhalation des arômes. Si tu travailles avec du basilic à petites feuilles, pas besoin de le déchirer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pancit Bihon</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/pancit-bihon/</link>
      <pubDate>Mon, 23 Jun 2014 11:20:00 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/pancit-bihon/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : **Philippines  **&lt;/p&gt;&#xA;&lt;h3 id=&#34;pancit-bihon&#34;&gt;Pancit Bihon&lt;/h3&gt;&#xA;&lt;p&gt;Pancit ou pansit est le terme désignant les nouilles dans la cuisine philippine. Elles ont été introduits dans les Philippines par les Chinois et ont depuis été adoptées dans la cuisine locale.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pour: 4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 cs d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;2 oignons nouveaux finement hachés. Les tiges émincées et réservées pour la décoration.&lt;/li&gt;&#xA;&lt;li&gt;3 gousses ail émincées&lt;/li&gt;&#xA;&lt;li&gt;2 blanc de poulet&lt;/li&gt;&#xA;&lt;li&gt;le jus d’un citron vert.&lt;/li&gt;&#xA;&lt;li&gt;10 g de gingembre frais haché&lt;/li&gt;&#xA;&lt;li&gt;1 petit choux, finement émincé&lt;/li&gt;&#xA;&lt;li&gt;4 carottes, finement tranchées&lt;/li&gt;&#xA;&lt;li&gt;1 poivron rouge émincés&lt;/li&gt;&#xA;&lt;li&gt;75 ml de sauce soja&lt;/li&gt;&#xA;&lt;li&gt;40 ml de sake&lt;/li&gt;&#xA;&lt;li&gt;Sel et poivre (au goût)&lt;/li&gt;&#xA;&lt;li&gt;1 citron vert en quartiers&lt;/li&gt;&#xA;&lt;li&gt;2 oeuf dur&lt;/li&gt;&#xA;&lt;li&gt;piment ou sauce Siracha&lt;/li&gt;&#xA;&lt;li&gt;200 g de vermicelles de riz&lt;/li&gt;&#xA;&lt;li&gt;200 g de nouilles chinoises&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Magrets De Canard Aux Cerises</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/magrets-de-canard-aux-cerises/</link>
      <pubDate>Tue, 17 Jun 2014 11:30:20 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/magrets-de-canard-aux-cerises/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Stone Fruits (Fruits à noyau)&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;magrets-de-canard-aux-cerises&#34;&gt;Magrets De Canard Aux Cerises&lt;/h3&gt;&#xA;&lt;h3 id=&#34;pour-4personnes&#34;&gt;Pour: 4 personnes&lt;/h3&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;2 magrets de 400 g&lt;/li&gt;&#xA;&lt;li&gt;500 g de cerises&lt;/li&gt;&#xA;&lt;li&gt;10 cl de vin rouge&lt;/li&gt;&#xA;&lt;li&gt;1 c. à s. de xérès&lt;/li&gt;&#xA;&lt;li&gt;2 c. à s. d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;2 dl de jus de volaille&lt;/li&gt;&#xA;&lt;li&gt;50 g de beurre&lt;/li&gt;&#xA;&lt;li&gt;2 c. à s. de sucre en poudre&lt;/li&gt;&#xA;&lt;li&gt;sel, poivre&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cannelés Bordelais</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/canneles-bordelais/</link>
      <pubDate>Mon, 09 Jun 2014 10:26:44 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/canneles-bordelais/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Historic Foods or Famous Dishes from History&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;cannelés-bordelais&#34;&gt;Cannelés Bordelais&lt;/h3&gt;&#xA;&lt;p&gt;La légende court que les cannelés étaient confectionnés à partir de la farine récupérée par les religieuses sur les quais de Bordeaux, ville renommée pour son port de commerce au XVIIIe siècle…&lt;/p&gt;&#xA;&lt;p&gt;Le port de Bordeaux est aussi très étroitement associé à l’importation du rhum et de la vanille des Caraïbes, ingrédients essentiels pour la confection des cannelés. Enfin, quand on parle de Bordeaux, on pense à la ville mais aussi au vin du même nom. Quoi de plus naturel alors, pour cette recette typiquement bordelaise, de voir entrer en scène l’histoire viticole de cette région. En effet, d’après la légende, les jaunes d’œufs étaient offerts aux petites sœurs des pauvres par les châteaux producteurs de vins !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hachis Parmentier De Confit De Canard Et De Navets</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/hachisparmentiercanard/</link>
      <pubDate>Thu, 05 Jun 2014 17:03:48 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/hachisparmentiercanard/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Confit&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;hachis-parmentier-de-confit-de-canard-et-de-navets&#34;&gt;Hachis Parmentier De Confit De Canard Et De Navets&lt;/h3&gt;&#xA;&lt;p&gt;Cette recette est excellente. L’association du confit de canard et du navet est délicieuse. La purée est plus souple qu’une purée de pommes de terre classique et la viande de canard juste relevée comme il faut.&lt;/p&gt;&#xA;&lt;h3 id=&#34;pour-4personnes&#34;&gt;Pour: 4 personnes&lt;/h3&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;4 cuisses de canard confit&lt;/li&gt;&#xA;&lt;li&gt;500 g de navets blancs&lt;/li&gt;&#xA;&lt;li&gt;500 g de pommes de terre&lt;/li&gt;&#xA;&lt;li&gt;1 petite carotte&lt;/li&gt;&#xA;&lt;li&gt;2 échalotes&lt;/li&gt;&#xA;&lt;li&gt;chapelure&lt;/li&gt;&#xA;&lt;li&gt;sel et poivre&lt;/li&gt;&#xA;&lt;li&gt;un peu de beurre pour les moules et pour parsemer le gratin&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions: 1. Eplucher les navets et pommes de terre. les couper en quartiers. 2. Cuire les légumes à l’eau bouillante salée jusqu’à ce qu’ils soient tendres (30 minutes environ) ou 10 minutes à l’autocuiseur. 3. Egoutter bien et passer les pommes de terre et les navets au presse purée. Saler la purée et réserver. 4. Préchauffer le four à 180°. 5. Peler la carotte et les échalotes. Les hacher finement et les faire revnir dans 2 cuil. à soupe de graisse de canard prélevée dans la boîte des cuisses de canard. 6. Retirer la peau et les os des cuisses de carnard ainsi que la graisse. 7. Hacher la viande au robot ou à la main (pas trop finement). Saler et poivrer. 8. Dans un grand plat à four ou dans des ramequins beurrés verser un peu de purée, de la viande et terminer par un peu de purée. 9. Saupoudrer d’un peu de chapelure et de petits morceaux de beurre. 10. Faire cuire 30 minutes. 11. Servir bien chaud avec une salade de mâche par exemple.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mezze Turc: Deux houmous, Falafels et pains pita</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/mezze-turc-deux-houmous-falafels-et-pains-pita/</link>
      <pubDate>Mon, 26 May 2014 18:32:40 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/mezze-turc-deux-houmous-falafels-et-pains-pita/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Turkish&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour cela nous avons réalisé un mezze turc: houmous, houmous aux poivrons grillés, falafels et pain pita accompagnés de légumes coupés.&lt;/p&gt;&#xA;&lt;h3 id=&#34;houmous-aux-poivrons-grillés&#34;&gt;Houmous Aux Poivrons Grillés&lt;/h3&gt;&#xA;&lt;p&gt;Mieux que le classique houmous, le houmous aux poivrons grillés !&lt;/p&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;** **Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 boîte de pois chiches (400g)&lt;/li&gt;&#xA;&lt;li&gt;1 gros poivron&lt;/li&gt;&#xA;&lt;li&gt;2 gousse d’ail hachées&lt;/li&gt;&#xA;&lt;li&gt;1/2 cc de sel&lt;/li&gt;&#xA;&lt;li&gt;Le jus d’1/2 citron&lt;/li&gt;&#xA;&lt;li&gt;1 CS de basilic séché (ou quelques feuilles de frais)&lt;/li&gt;&#xA;&lt;li&gt;cumin&lt;/li&gt;&#xA;&lt;li&gt;paprika&lt;/li&gt;&#xA;&lt;li&gt;tabasco (qq gouttes)&lt;/li&gt;&#xA;&lt;li&gt;1 ml huile de sésame&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lapin à la bière brune et aux pruneaux</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/lapin-a-la-biere-brune-et-aux-pruneaux/</link>
      <pubDate>Mon, 19 May 2014 18:26:06 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/lapin-a-la-biere-brune-et-aux-pruneaux/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Beer&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;lapin-à-la-bière-brune-et-aux-pruneaux&#34;&gt;Lapin à la bière brune et aux pruneaux&lt;/h3&gt;&#xA;&lt;h3 id=&#34;pour-4personnes&#34;&gt;Pour: 4 personnes&lt;/h3&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;4 cuisses de lapin&lt;/li&gt;&#xA;&lt;li&gt;75 g de lardons fumés&lt;/li&gt;&#xA;&lt;li&gt;75 g de pruneaux dénoyautés&lt;/li&gt;&#xA;&lt;li&gt;10 g de raisins secs&lt;/li&gt;&#xA;&lt;li&gt;75 cl bière brune des Flandres&lt;/li&gt;&#xA;&lt;li&gt;2 carotte en tranche&lt;/li&gt;&#xA;&lt;li&gt;20 g de beurre&lt;/li&gt;&#xA;&lt;li&gt;2 oignons émincés&lt;/li&gt;&#xA;&lt;li&gt;2 feuilles de laurier&lt;/li&gt;&#xA;&lt;li&gt;Sel et poivre du moulin&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Dans une cocotte en fonte faire chauffer le beurre et y mettre les morceaux de lapin à dorer sur toutes leurs faces sur feu moyen.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Poulet Adobo et Onion Rings</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/poulet-adobo-et-onion-rings/</link>
      <pubDate>Thu, 15 May 2014 13:58:13 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/poulet-adobo-et-onion-rings/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Diner/Drive-In Food&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour cela nous avons réalisé une recette combo: poulet et onion rings. La salade, c’est juste pour la déco !&lt;/p&gt;&#xA;&lt;h3 id=&#34;poulet-adobo&#34;&gt;Poulet Adobo&lt;/h3&gt;&#xA;&lt;p&gt;Pour: 4** personnes**&lt;/p&gt;&#xA;&lt;p&gt;Le poulet ou le porc «adobo» est le plat national des Philippines. Chaque famille a sa propre recette qui peut demander ou non de mariner la viande, mais qui prévoit toujours de la frire (le mot « adobo » signifie « frire »). Il est surprenant qu’une recette aussi facile et tolérante, qui mérite son sobriquet de « poulet paresseux », puisse donner un résultat si délicieux.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Porc au caramel</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/porc-au-caramel/</link>
      <pubDate>Sun, 04 May 2014 10:59:51 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/porc-au-caramel/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Caramelization&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;porc-au-caramel&#34;&gt;Porc au caramel&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;5 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;L’ultime recette levant le secret du sublime caramel à la fois suave, puissant et très aromatique. On peut rajouter du gingembre frais dans la marinade pour plus de saveurs.&lt;/p&gt;&#xA;&lt;p&gt;** **Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 à 1.2 kg d’échine de porc&lt;/li&gt;&#xA;&lt;li&gt;8 cl de sauce soja claire&lt;/li&gt;&#xA;&lt;li&gt;2 gousse d’ail&lt;/li&gt;&#xA;&lt;li&gt;16 morceaux de sucre&lt;/li&gt;&#xA;&lt;li&gt;Le jus d’1/2 citron&lt;/li&gt;&#xA;&lt;li&gt;Poivre noir du moulin&lt;/li&gt;&#xA;&lt;li&gt;1 cs mélange cannelle, gingembre, poivre&lt;/li&gt;&#xA;&lt;li&gt;1 cc 5 baies&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Causa Rellena</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/causa-rellena/</link>
      <pubDate>Mon, 28 Apr 2014 18:01:39 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/causa-rellena/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Peruvian&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;causa-rellena&#34;&gt;Causa Rellena&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;** **Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1,5 kg de pommes de terre à purée (binje)&lt;/li&gt;&#xA;&lt;li&gt;1 grosse boîte de thon en conserve&lt;/li&gt;&#xA;&lt;li&gt;1 oignon rouge haché&lt;/li&gt;&#xA;&lt;li&gt;1 jus de citron vert&lt;/li&gt;&#xA;&lt;li&gt;1 avocat bien mûr&lt;/li&gt;&#xA;&lt;li&gt;de la purée de piment (j’en ai trouvé en tube)&lt;/li&gt;&#xA;&lt;li&gt;huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;sel, poivre&lt;/li&gt;&#xA;&lt;li&gt;mayonnaise&lt;/li&gt;&#xA;&lt;li&gt;salade et des tomates pour l’accompagnement&lt;/li&gt;&#xA;&lt;li&gt;8 olives noires&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rouleaux de printemps</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/rouleaux-de-printemps/</link>
      <pubDate>Mon, 21 Apr 2014 17:14:28 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/rouleaux-de-printemps/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : **W17 – Soy **&lt;/p&gt;&#xA;&lt;h3 id=&#34;rouleaux-de-printemps&#34;&gt;Rouleaux De Printemps&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;12 rouleaux de printemps&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;** **Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1/2 concombre&lt;/li&gt;&#xA;&lt;li&gt;1 carotte&lt;/li&gt;&#xA;&lt;li&gt;100 g de germes de soja&lt;/li&gt;&#xA;&lt;li&gt;100 g de vermicelles de riz ou de soja&lt;/li&gt;&#xA;&lt;li&gt;menthe ou coriandre&lt;/li&gt;&#xA;&lt;li&gt;24 crevettes ou 200g de poulet émincé et grillé&lt;/li&gt;&#xA;&lt;li&gt;salade&lt;/li&gt;&#xA;&lt;li&gt;12 galettes de riz&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Découpez finement en longueur la carotte et le concombre de la longueur souhaitée par rapport à la galette de riz.. Réservez les avec le reste de la garniture choisie (germes de soja, salade). Lavez et réservez l’herbe choisie (menthe ou coriandre).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tarte roulée multicolore</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/tarte-roulee-multicolore/</link>
      <pubDate>Sun, 13 Apr 2014 12:45:12 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/tarte-roulee-multicolore/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : **W16 – 80s Food **&lt;/p&gt;&#xA;&lt;h3 id=&#34;tarte-roulée-multicolore&#34;&gt;Tarte roulée multicolore&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;** **Ingrédients:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 paquet de jambon les grandes tranches d’Aoste&lt;/li&gt;&#xA;&lt;li&gt;1 courgette verte&lt;/li&gt;&#xA;&lt;li&gt;1 courgette jaune&lt;/li&gt;&#xA;&lt;li&gt;1 carotte&lt;/li&gt;&#xA;&lt;li&gt;1 œuf&lt;/li&gt;&#xA;&lt;li&gt;60 g de crème fraîche entière&lt;/li&gt;&#xA;&lt;li&gt;30 g de gruyère râpé&lt;/li&gt;&#xA;&lt;li&gt;1 rouleau de pâte feuilletée&lt;/li&gt;&#xA;&lt;li&gt;sel et poivre&lt;/li&gt;&#xA;&lt;li&gt;1 moule de 16cm de diametre&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Commencez par tailler tous les légumes en lamelles avec un économe.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cube de Fruit</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/cube-de-fruit/</link>
      <pubDate>Wed, 09 Apr 2014 20:02:25 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/cube-de-fruit/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Knifework&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Recette simple mais technique, il faut être minutieux dans la découpe et dans l’assemblage.&lt;/p&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;max 4 personnes (ou prévoir du temps…)&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ingrédients:&lt;/p&gt;&#xA;&lt;p&gt;Au choix 4 des fruits suivants à ajuster selon le nombre de convives:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;pastèque&lt;/li&gt;&#xA;&lt;li&gt;kiwi&lt;/li&gt;&#xA;&lt;li&gt;mangue&lt;/li&gt;&#xA;&lt;li&gt;pitahaya&lt;/li&gt;&#xA;&lt;li&gt;melon&lt;/li&gt;&#xA;&lt;li&gt;fraise&lt;/li&gt;&#xA;&lt;li&gt;pomme&lt;/li&gt;&#xA;&lt;li&gt;banane&lt;/li&gt;&#xA;&lt;li&gt;pamplemousse&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Lavez les fruits et épluchez les si nécessaire.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Coupez tous les fruits en petits cubes égaux de 1,5 cm de côté environ. L’idéal étant de prendre un vrai dé comme patron.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Moules marinières et frites parfaites</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/moules-marinieres-et-frites-parfaites/</link>
      <pubDate>Mon, 31 Mar 2014 20:06:29 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/moules-marinieres-et-frites-parfaites/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Belgian&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Avec deux recettes pour réaliser les célèbres Moules-Frites.&lt;/p&gt;&#xA;&lt;h3 id=&#34;moules-marinières&#34;&gt;Moules marinières&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Les moules marinières sont des moules préparées dans de la sauce marinière à base d’échalotes et de vin blanc. Elles sont traditionnellement servies avec des frites pour composer les moules-frites.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1,5 kg de moules&lt;/li&gt;&#xA;&lt;li&gt;1 carotte&lt;/li&gt;&#xA;&lt;li&gt;2 échalotes&lt;/li&gt;&#xA;&lt;li&gt;1 peu de beurre&lt;/li&gt;&#xA;&lt;li&gt;100 ml de vin blanc&lt;/li&gt;&#xA;&lt;li&gt;400 ml d’eau&lt;/li&gt;&#xA;&lt;li&gt;laurier&lt;/li&gt;&#xA;&lt;li&gt;10 ml de crème entière&lt;/li&gt;&#xA;&lt;li&gt;1 cs de farine&lt;/li&gt;&#xA;&lt;li&gt;1 peu de beurre&lt;/li&gt;&#xA;&lt;li&gt;persil plat&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pommes De Terre Hasselback Garnies</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/pommes-de-terre-hasselback-garnies/</link>
      <pubDate>Sun, 23 Mar 2014 14:18:56 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/pommes-de-terre-hasselback-garnies/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Potatoe&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;pommes-de-terre-hasselback-garnies&#34;&gt;Pommes De Terre Hasselback Garnies&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Cette préparation de pommes de terre est nommée d’après la façon de tailler les pommes de terre avant la cuisson. En effet c’est dans les cuisines de l’hôtel Hasselbacken à Stockholm que l’Hasselback potatoe est née.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;2 pommes de terre&lt;/li&gt;&#xA;&lt;li&gt;100 g de beurre&lt;/li&gt;&#xA;&lt;li&gt;sel et poivre&lt;/li&gt;&#xA;&lt;li&gt;1 gousse d’ail émincée&lt;/li&gt;&#xA;&lt;li&gt;herbes de Provence (le mélange ou alors individuellement du thym, romarin ou feuille de laurier)&lt;/li&gt;&#xA;&lt;li&gt;2 tranches de bacon&lt;/li&gt;&#xA;&lt;li&gt;100 g d’emmental rapée&lt;/li&gt;&#xA;&lt;li&gt;100 ml de crème fraiche&lt;/li&gt;&#xA;&lt;li&gt;50 g de ciboulette ou de tiges d’oignons nouveau tranchés&lt;/li&gt;&#xA;&lt;li&gt;1/2 citron&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Burger végétarien</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/burger-vegetarien/</link>
      <pubDate>Mon, 17 Mar 2014 20:51:16 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/burger-vegetarien/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Street Food&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;burger-végétarien&#34;&gt;Burger Végétarien&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 burgers&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Un hamburger végétarien (pas vegan), qui ravira ceux qui ne veulent pas manger de viande, sans pour autant avoir un goût de semelle.&lt;/p&gt;&#xA;&lt;p&gt;Facile à faire, vous n’allez utilisez que des produits naturels. Je vous recommande de chercher des haricots noirs, que vous trouverez au rayon étranger au format sec. Une fois la recette réalisée, vous pouvez la tester avec d’autres légumineuses, comme des pois chiche ou des haricots rouge.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Parsing Fortigate configuration in Python</title>
      <link>https://jmanteau.fr/informatique/python/parsing-fortigate-configuration-in-python/</link>
      <pubDate>Mon, 10 Mar 2014 21:04:34 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/python/parsing-fortigate-configuration-in-python/</guid>
      <description>&lt;p&gt;Had to parse some Fortinet configuration in python so here is my solution:&lt;/p&gt;&#xA;&lt;p&gt;from collections import defaultdict from pprint import pprint import sys  f = lambda: defaultdict(f)  def getFromDict(dataDict, mapList):     return reduce(lambda d, k: d[k], mapList, dataDict)  def setInDict(dataDict, mapList, value):     getFromDict(dataDict, mapList[:-1])[mapList[-1]] = value      class Parser(object):      def &lt;strong&gt;init&lt;/strong&gt;(self):         self.config_header = []         self.section_dict = defaultdict(f)           def parse_config(self, fields): # Create a new section         self.config_header.append(&amp;quot; &amp;ldquo;.join(fields))      def parse_edit(self, line): # Create a new header         self.config_header.append(line[])      def parse_set(self, line): # Key and values         key = line[]         values = &amp;quot; &amp;ldquo;.join(line[1:])         headers= self.config_header+[key]         setInDict(self.section_dict,headers,values)      def parse_next(self, line): # Close the header         self.config_header.pop()      def parse_end(self, line): # Close the section         self.config_header.pop()      def parse_file(self, path):                   with open(path) as f:             gen_lines = (line.rstrip() for line in f if line.strip())             for line in gen_lines:                # pprint(dict(self.section_dict))                 # Clean up the fields and remove unused lines.                             fields = line.replace(&amp;rsquo;&amp;rdquo;&amp;rsquo;, &amp;lsquo;&amp;rsquo;).strip().split(&amp;rdquo; &amp;ldquo;)                  valid_fields= [&amp;ldquo;set&amp;rdquo;,&amp;ldquo;end&amp;rdquo;,&amp;ldquo;edit&amp;rdquo;,&amp;ldquo;config&amp;rdquo;,&amp;ldquo;next&amp;rdquo;]                 if fields[] in valid_fields:                     method = fields[]                     # fetch and call method                     getattr(Parser, &amp;ldquo;parse_&amp;rdquo; + method)(self, fields[1:])          return self.section_dict  config = Parser().parse_file(&amp;lsquo;FGT02_20130308.conf&amp;rsquo;)  print config[&amp;ldquo;system admin&amp;rdquo;][&amp;ldquo;admin&amp;rdquo;][&amp;ldquo;dashboard-tabs&amp;rdquo;][&amp;ldquo;1&amp;rdquo;][&amp;ldquo;name&amp;rdquo;] print config[&amp;ldquo;firewall address&amp;rdquo;][&amp;ldquo;ftp.fr.debian.org&amp;rdquo;][&amp;ldquo;type&amp;rdquo;]&lt;/p&gt;</description>
    </item>
    <item>
      <title>Billes moléculaires de menthe et de violette sur tuile en chocolat</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/billes-moleculaires-de-menthe-et-de-violette-sur-tuile-en-chocolat/</link>
      <pubDate>Mon, 10 Mar 2014 19:37:40 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/billes-moleculaires-de-menthe-et-de-violette-sur-tuile-en-chocolat/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Molecular&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;billes-moléculaires-de-menthe-et-de-violette-sur-tuile-en-chocolat&#34;&gt;Billes moléculaires de menthe et de violette sur tuile en chocolat&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;12 tuiles garnies&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Pipette&lt;/li&gt;&#xA;&lt;li&gt;Balance de précision&lt;/li&gt;&#xA;&lt;li&gt;50 g de chocolat&lt;/li&gt;&#xA;&lt;li&gt;3 g de chlorure de calcium&lt;/li&gt;&#xA;&lt;li&gt;1 g d’alginate de sodium&lt;/li&gt;&#xA;&lt;li&gt;5 c l de sirop de menthe&lt;/li&gt;&#xA;&lt;li&gt;5 c l de sirop de violette&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Conserver 17g de chocolat à part.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Chauffer le reste du chocolat au micro-onde pour le faire fondre. Ajouter les 17g et mélanger pour que l’ensemble soit fondu.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pavlova Au Citron Et Fruits Rouges</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/pavlova-au-citron-et-fruits-rouges/</link>
      <pubDate>Sun, 02 Mar 2014 15:16:40 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/pavlova-au-citron-et-fruits-rouges/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Australia&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;pavlova-au-citron-et-fruits-rouges&#34;&gt;Pavlova Au Citron Et Fruits Rouges&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 pavlova&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;La pavlova est un dessert à base de meringue nommé en l’honneur de la ballerine russe Anna Pavlova. Sa spécificité est d’être croustillante à l’extérieur et moelleuse à l’intérieur. La pavlova est généralement nappée de crème fouettée et/ou de glace et recouverte de fruits.&lt;/p&gt;&#xA;&lt;p&gt;Le dessert a été inventé après un voyage de Pavlova en Australie et en Nouvelle-Zélande. Les deux pays revendiquent l’invention de la pavlova, ce qui est source de conflit.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Filet Mignon, Crumble De Pignons Et Crème D’ail</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/filet-mignon-crumble-de-pignons-et-creme-dail/</link>
      <pubDate>Sun, 02 Mar 2014 15:09:45 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/filet-mignon-crumble-de-pignons-et-creme-dail/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Garlic&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;filet-mignon-crumble-de-pignons-et-crème-dail&#34;&gt;Filet Mignon, Crumble De Pignons Et Crème D’ail&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;2 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 filet mignon de 450g&lt;/li&gt;&#xA;&lt;li&gt;Du persil&lt;/li&gt;&#xA;&lt;li&gt;10cl de vin blanc&lt;/li&gt;&#xA;&lt;li&gt;2 pommes de terre&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;****&lt;em&gt;Pour le crumble de pignon :&lt;/em&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;30 g de beurre pommade&lt;/li&gt;&#xA;&lt;li&gt;25 g de farine&lt;/li&gt;&#xA;&lt;li&gt;15 g de poudre de noisette&lt;/li&gt;&#xA;&lt;li&gt;30 g de pignons de pin&lt;/li&gt;&#xA;&lt;li&gt;10 g de parmesan râpé&lt;/li&gt;&#xA;&lt;li&gt;sel&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;****&lt;em&gt;Pour la crème d’ail :&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>W8 – Pizza Méditerrannéenne</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w8-pizza-mediterranneenne/</link>
      <pubDate>Sat, 22 Feb 2014 18:10:02 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w8-pizza-mediterranneenne/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;TV Show Inspired&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;pizza-méditerranéenne&#34;&gt;Pizza Méditerranéenne&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;L’inspiration de cette semaine vient de Friends et de Joey Tribbiani en particulier :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2014/02/joey_pizza.gif&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;1 grande pizza rectangulaire (6 personnes)&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;****&lt;em&gt;1 Pâte à pizza:&lt;/em&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;300 g de farine&lt;/li&gt;&#xA;&lt;li&gt;20 g de levure de boulanger&lt;/li&gt;&#xA;&lt;li&gt;2 cs d’huile d’olive&lt;/li&gt;&#xA;&lt;li&gt;1 cc de sel&lt;/li&gt;&#xA;&lt;li&gt;2 cc d’un melange basilic, thym et origan&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;****&lt;em&gt;Garniture de la pizza:&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>W7 – Filet De Cabillaud Poché Avec Un Curry Vert</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w7-filet-de-cabillaud-poche-avec-un-curry-vert/</link>
      <pubDate>Sun, 16 Feb 2014 17:37:53 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w7-filet-de-cabillaud-poche-avec-un-curry-vert/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Poaching&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;filet-de-cabillaud-poché-avec-un-curry-vert&#34;&gt;Filet De Cabillaud Poché Avec Un Curry Vert&lt;/h3&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;4 personnes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;4 filet de cabillaud&lt;/li&gt;&#xA;&lt;li&gt;1 demi-poireau émincé&lt;/li&gt;&#xA;&lt;li&gt;1 carotte coupée en brunoise&lt;/li&gt;&#xA;&lt;li&gt;1/2 poivron rouge&lt;/li&gt;&#xA;&lt;li&gt;1/2 poivron vert&lt;/li&gt;&#xA;&lt;li&gt;1 banane&lt;/li&gt;&#xA;&lt;li&gt;1 pomme&lt;/li&gt;&#xA;&lt;li&gt;1 gros oignon émincé&lt;/li&gt;&#xA;&lt;li&gt;2 cs de pate de curry vert&lt;/li&gt;&#xA;&lt;li&gt;100 ml de lait de coco&lt;/li&gt;&#xA;&lt;li&gt;300 g de riz&lt;/li&gt;&#xA;&lt;li&gt;Court bouillon:&lt;/li&gt;&#xA;&lt;li&gt;2 échalotes&lt;/li&gt;&#xA;&lt;li&gt;100 ml de vin blanc&lt;/li&gt;&#xA;&lt;li&gt;300 ml d’eau&lt;/li&gt;&#xA;&lt;li&gt;3 feuille de laurier&lt;/li&gt;&#xA;&lt;li&gt;1c c de pate de curry&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>W6 – Jerk Chicken</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w6-jerk-chicken/</link>
      <pubDate>Sun, 09 Feb 2014 14:17:55 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w6-jerk-chicken/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Jamaican&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;jerk-chicken&#34;&gt;Jerk Chicken&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le Jerk chicken est un plat jamaïcain typique fameux au goût à la fois très parfumé et très pimenté.&lt;/p&gt;&#xA;&lt;p&gt;Il tire sa saveur d’un mélange d’épice particulier. Ce mélange s’appelle le « Jerk seasonning ». Il est composé de gingembre, de thym, d’oignons, de piment et d’autres épices.&lt;/p&gt;&#xA;&lt;p&gt;Il sera encore plus jamaicain accompagné de riz aux haricots et de bananes plantain frites.&lt;/p&gt;</description>
    </item>
    <item>
      <title>W5 – Pastéis De Nata</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w5-pasteis-de-nata/</link>
      <pubDate>Sun, 09 Feb 2014 14:17:02 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w5-pasteis-de-nata/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Vanilla&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;pastéis-de-nata&#34;&gt;Pastéis De Nata&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Un pastel de nata (au pluriel pastéis de nata) est une pâtisserie typique de la cuisine portugaise. Il s’agit d’une sorte de flan pâtissier, dégusté tiède.&lt;/p&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;12 pastéis&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;1 paquet de pâte feuilletée, décongelée ou fraiche&lt;/li&gt;&#xA;&lt;li&gt;400 ml de lait entier&lt;/li&gt;&#xA;&lt;li&gt;1 gousse de vanille, coupée en deux et grattée&lt;/li&gt;&#xA;&lt;li&gt;Zeste d’1 citron bio&lt;/li&gt;&#xA;&lt;li&gt;1/2 bâton de cannelle&lt;/li&gt;&#xA;&lt;li&gt;60 g de maïzena&lt;/li&gt;&#xA;&lt;li&gt;100 g de sucre de canne blond&lt;/li&gt;&#xA;&lt;li&gt;2 jaunes d’oeuf + 1 oeuf&lt;/li&gt;&#xA;&lt;li&gt;75 ml ml d’eau&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Directions:&lt;/p&gt;</description>
    </item>
    <item>
      <title>W4 – Lasagnes Saumon Epinards</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w4-lasagnes-saumon-epinards/</link>
      <pubDate>Wed, 05 Feb 2014 20:18:03 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w4-lasagnes-saumon-epinards/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Ingredient you Hated as a Kid&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;lasagnes-saumon-epinards&#34;&gt;Lasagnes Saumon Epinards&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le saumon est mariné dans la sauce soja, couvert d’épinards et puis de sauce béchamel. Le tout renouvelé en deux étages diaboliquement bons, fondants, doux, on en aurait même envie de se caler devant la télé avec le plat à gratin sur les genoux !&lt;/p&gt;&#xA;&lt;p&gt;Pour: &lt;strong&gt;6 personnes dans un plat à gratin&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>W3 – Jambalaya</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w3-jambalaya/</link>
      <pubDate>Sat, 18 Jan 2014 13:06:14 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w3-jambalaya/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;One Pot&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;jambalaya&#34;&gt;Jambalaya&lt;/h3&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;La cuisine cajun aux Etats-Unis, c’est la cuisine de Louisiane, de la Nouvelle-Orleans, des Bayous… Et le plat symbole c’est bien le jambalaya !&lt;/p&gt;&#xA;&lt;p&gt;La cuisine cajun, comme toutes les cuisines, tire ses origines de l’histoire avec un grand H de l’Etat &amp;amp; des peuples de Louisiane: Indiens, français acadiens, espagnols, allemands, italiens, antillais et africains; les esclaves ont tour à tour peuplé cette région, lui donnant un caractère et une culture bien particulière.&lt;/p&gt;</description>
    </item>
    <item>
      <title>W2 – Bortsch Polonais</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w2-bortsch-polonais/</link>
      <pubDate>Sun, 12 Jan 2014 14:21:41 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w2-bortsch-polonais/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : &lt;strong&gt;Polish&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;bortsch-polonais&#34;&gt;Bortsch Polonais&lt;/h3&gt;&#xA;&lt;p&gt;Pour: 8 personnes&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Intro:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le bortsch est un plat national typique des pays slaves, que l’on mange fréquemment en Pologne – où il constitue l’un des 12&lt;/p&gt;&#xA;&lt;p&gt;plats traditionnels du réveillon de Noël -, en Roumanie, en Ukraine et également en Russie.&lt;/p&gt;&#xA;&lt;p&gt;La belle couleur rouge de cette soupe-plat complet provient de l’ingrédient principal, la betterave. Comme de nombreuses soupes du terroir, le bortsch correspond parfaitement aux préconisations de santé publique, qui invitent à manger 5 fruits et légumes par jour. Il contient en effet, de façon variable selon les us et coutumes de chaque pays, du concombre, du chou blanc, des carottes, des pommes de terre, des oignons et des&lt;/p&gt;</description>
    </item>
    <item>
      <title>W1 – Cuillères de crevettes caramélisées sur une crème d’oeufs au curry</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/w1-cuilleres-de-crevettes-caramelisees-sur-une-creme-doeufs-au-curry/</link>
      <pubDate>Sat, 04 Jan 2014 18:07:30 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/w1-cuilleres-de-crevettes-caramelisees-sur-une-creme-doeufs-au-curry/</guid>
      <description>&lt;p&gt;Pour explication voir &lt;a href=&#34;http://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/&#34;&gt;52weeksofcooking&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Le thème de cette semaine est : Eggs&lt;/p&gt;&#xA;&lt;h3 id=&#34;cuillères-de-crevettes-caramélisées-sur-une-crème-doeufs-au-curry&#34;&gt;Cuillères de crevettes caramélisées sur une crème d’oeufs au curry&lt;/h3&gt;&#xA;&lt;p&gt;Préparation : 30 min&lt;/p&gt;&#xA;&lt;p&gt;Cuisson : 10 min&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Ingrédients:&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;1 jaune d’œuf&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;1 cuil. à c. de moutarde&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;25 cl d’huile neutre&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Sel et poivre du moulin&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;2 œufs&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;1 cuil. à c. de curry en poudre&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;2 cuil. à s. de ciboulette ciselée&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;1 à 2 cuil. à s. de crème fraîche&lt;/p&gt;</description>
    </item>
    <item>
      <title>/r/52weeksofcooking</title>
      <link>https://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/</link>
      <pubDate>Sat, 04 Jan 2014 18:00:08 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/52weeksofcooking/r52weeksofcooking/</guid>
      <description>&lt;p&gt;La bonne résolution de cette année est de réaliser le 52 Weeks of Cooking sur Reddit.&lt;/p&gt;&#xA;&lt;p&gt;Le but est de cuisiner chaque semaine un plat sur un thème et de le photographier. Je me lance donc dans mes débuts de photographe culinaire.&lt;/p&gt;&#xA;&lt;p&gt;La liste des thèmes est disponible ici &lt;a href=&#34;http://www.reddit.com/r/52weeksofcooking/comments/1tjchy/2014_official_weekly_challenge_thread/&#34;&gt;2014 Official Weekly Challenge Thread&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Week 1: December 30th - January 5th: Eggs&lt;/p&gt;&#xA;&lt;p&gt;Week 2: January 6th - January 12th: Polish&lt;/p&gt;&#xA;&lt;p&gt;Week 3: January 13th - January 19th: One Pot&lt;/p&gt;</description>
    </item>
    <item>
      <title>Autoriser les champs de mot de passe bloqués sur le copier-coller</title>
      <link>https://jmanteau.fr/informatique/autoriser-les-champs-de-mot-de-passe-bloques-sur-le-copier-coller/</link>
      <pubDate>Fri, 06 Dec 2013 18:04:05 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/autoriser-les-champs-de-mot-de-passe-bloques-sur-le-copier-coller/</guid>
      <description>&lt;p&gt;Lorsque que l’on utilise un gestionnaire de mot de passe (type Keepass), on a des mots de passe de 20 charactères aléatoires. Et un jour, un designer se dit que ça peut être bien d’interdire de coller dans les champs passwords sur son site web. Cela n’a aucun intérêt en terme de sécurité !&lt;/p&gt;&#xA;&lt;p&gt;Pour contourner cela, mettez la bookmarklet suivant dans vos favoris : &lt;a href=&#34;javascript:(function(){var%20inputs=document.getElementsByTagName(&#39;input&#39;);for(var%20i=0;i&#34;&gt;ENABLE-PASSWORD&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;En cliquant dessus vous enlevez l’élément « onpaste » sur tous les champs password, ce qui vous permet maintenant de coller des passwords.&lt;/p&gt;</description>
    </item>
    <item>
      <title>« Je n’ai rien à cacher »</title>
      <link>https://jmanteau.fr/informatique/web/je-nai-rien-a-cacher/</link>
      <pubDate>Fri, 12 Jul 2013 09:26:24 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/je-nai-rien-a-cacher/</guid>
      <description>&lt;p&gt;Au vu de l’actualité des dernières semaines (NSA), on re-entend la fameuse phrase: « De toute façon ils peuvent bien écouter, je n’ai rien à cacher ».&lt;/p&gt;&#xA;&lt;p&gt;Rien n’est plus faux. Tout le monde a des informations qu’il ne souhaite divulguer. Voici une liste de questions prises &lt;a href=&#34;https://news.ycombinator.com/item?id=5848359&#34;&gt;ici&lt;/a&gt; :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Avez-vous déjà eu un avortement ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà trompé votre mari / femme ?&lt;/li&gt;&#xA;&lt;li&gt;Êtes-vous actuellement à la recherche d’un nouvel emploi ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà été diagnostiqué avec une maladie mentale ?&lt;/li&gt;&#xA;&lt;li&gt;Êtes-vous actuellement sous anti-dépresseurs ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous été victime de violence sexuelle dans l’enfance ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà fortement apprécié une personne du même sexe ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà eu des rapports sexuels avec une personne du même sexe ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà critiqué votre employeur actuel ou le patron de quelqu’un d’autre ?&lt;/li&gt;&#xA;&lt;li&gt;Aimez-vous vos enfants de façon équitable ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà fantasmé sur … ?&lt;/li&gt;&#xA;&lt;li&gt;Envisagez-vous de concevoir un enfant dans les deux prochaines années ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà menti sur un CV ?&lt;/li&gt;&#xA;&lt;li&gt;Vous avez du mal à acquérir ou à maintenir une érection ?&lt;/li&gt;&#xA;&lt;li&gt;Êtes-vous une de ces femmes qui n’ont jamais d’orgasme ?&lt;/li&gt;&#xA;&lt;li&gt;Quels sont les médicaments sur ordonnance que vous prenez actuellement ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà été profondément déprimé ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà tenté de se suicider ?&lt;/li&gt;&#xA;&lt;li&gt;Avez-vous déjà pensé au suicide ?&lt;/li&gt;&#xA;&lt;li&gt;…&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Ce n’est que quelques exemples et on peut imaginer d’autres questions.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ASA, ASDM and HTTP API</title>
      <link>https://jmanteau.fr/informatique/securite/asa-asdm-and-http-api/</link>
      <pubDate>Wed, 29 May 2013 09:44:58 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/asa-asdm-and-http-api/</guid>
      <description>&lt;p&gt;You can execute some commands or get files on ASA, FWSM and ASA-SM directly with HTTP.&lt;/p&gt;&#xA;&lt;p&gt;First you need to enable http server :&lt;/p&gt;&#xA;&lt;p&gt;Then a command is send in the URL following this syntax:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;https://IP_ASA/admin/exec/CMD1/CMD2/CMD3&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;A simple example to show the arps:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;https://IP_ASA/admin/exec/show+arp+&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;A more complex example to get statistics for a contex:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;https://IP_ASA/admin/exec/changeto+context+MYCONTEXT/show+context/show+access-list&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;You can also use this to get files:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;https://IP_ASA/admin/DISK/FILE&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;For example:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;https://IP_ASA/admin/disk0/dap.xml&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;To find the exact command you need you enter : debug http on CLI and you browse ASDM to the desired information. The CLI will show you the requested URLs.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Diagnose a slow linux box: cheat sheet</title>
      <link>https://jmanteau.fr/informatique/diagnose-a-slow-linux-box-cheat-sheet/</link>
      <pubDate>Wed, 20 Mar 2013 19:55:20 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/diagnose-a-slow-linux-box-cheat-sheet/</guid>
      <description>&lt;h3 id=&#34;disk-space&#34;&gt;Disk Space:&lt;/h3&gt;&#xA;&lt;pre&gt;&lt;code&gt;df -h&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Make sure you have enough disk space&lt;/p&gt;&#xA;&lt;h3 id=&#34;memory-processes--load-average&#34;&gt;Memory /Processes / Load average&lt;/h3&gt;&#xA;&lt;pre&gt;&lt;code&gt;htop top (shift + m) free -m&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Use Htop&lt;/p&gt;&#xA;&lt;p&gt;Check for processes that are taking up a lot of memory/CPU and Check you’re not out of memory&lt;/p&gt;&#xA;&lt;h3 id=&#34;apache-errors&#34;&gt;Apache errors&lt;/h3&gt;&#xA;&lt;pre&gt;&lt;code&gt;grep 500 /var/log/apache2/error.log | less&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Look for 500 errors caused by erroneous code on the server&lt;/p&gt;&#xA;&lt;h3 id=&#34;high-hit-rate&#34;&gt;High hit rate&lt;/h3&gt;&#xA;&lt;pre&gt;&lt;code&gt;grep MaxClients /var/log/apache2/error.log&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Check for MaxClients warningdamn in your apache error logs&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pythonbrew on RHEL5</title>
      <link>https://jmanteau.fr/informatique/pythonbrew-on-rhel5/</link>
      <pubDate>Tue, 12 Mar 2013 14:01:40 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/pythonbrew-on-rhel5/</guid>
      <description>&lt;pre&gt;&lt;code&gt;yum install binutils gcc gcc-c++ make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel bison flex yum install openssl-devel zlib-devel mkdir -p /root/pythonbrew export PYTHONBREW_ROOT=/root/pythonbrew curl -kLO http://xrl.us/pythonbrewinstall chmod +x pythonbrewinstall ./pythonbrewinstall pythonbrew install 2.7.3 pythonbrew switch 2.7.3&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Cisco ASA: Authorize administrative access via Active Directory LDAP</title>
      <link>https://jmanteau.fr/informatique/cisco-asa-authorize-administrative-access-via-ldap/</link>
      <pubDate>Tue, 12 Mar 2013 08:14:42 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/cisco-asa-authorize-administrative-access-via-ldap/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2013/03/Cisco-new-logo-should-be1.gif&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The attribute map which bind our group of allowed administrators to a Service Type which allow logins:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;ldap attribute-map LDAP_MemberOf_ServiceType map-name  memberOf IETF-Radius-Service-Type map-value memberOf CN=G_ADMIN_SECU,OU=Groupes,DC=TEST,DC=secu 6&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;The Active Directory Servers. I use SSL so be sure to import the root certificate from the Active Directory to make it works.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;aaa-server TEST.SECU protocol ldap aaa-server TEST.SECU (DMZ_Auth) host 10.18.0.10 server-port 636 ldap-base-dn DC=TEST,DC=secu ldap-scope subtree ldap-naming-attribute sAMAccountName ldap-login-password ***** ldap-login-dn CN=svc-acces,OU=Services,DC=TEST,DC=secu ldap-over-ssl enable server-type microsoft ldap-attribute-map LDAP_MemberOf_ServiceType  aaa-server TEST.SECU (DMZ_Auth) host 10.18.0.11 server-port 636 ldap-base-dn DC=TEST,DC=secu ldap-scope subtree ldap-naming-attribute sAMAccountName ldap-login-password ***** ldap-login-dn CN=svc-acces,OU=Services,DC=TEST,DC=secu ldap-over-ssl enable server-type microsoft ldap-attribute-map LDAP_MemberOf_ServiceType&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;To use our LDAP to allow admin access to the firewall.&lt;/p&gt;</description>
    </item>
    <item>
      <title>UCARP: force master to become slave</title>
      <link>https://jmanteau.fr/informatique/ucarp-force-master-to-become-slave/</link>
      <pubDate>Tue, 26 Feb 2013 10:48:19 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/ucarp-force-master-to-become-slave/</guid>
      <description>&lt;p&gt;From UcARP documentation:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;You can send the ucarp process a SIGUSR2 to have it demote itself from master to backup, pause 3 seconds, then proceed as usual to listen for other masters and promote itself if necessary. This could be useful if you wish another node to take over master.&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;So if you want the slave to takeover the master you juste have to do:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;pkill -12 ucarp&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;In case of several VIPs, you have to identify the PID of the ucarp managing the vip:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bootstrap ASA failover configuration</title>
      <link>https://jmanteau.fr/informatique/securite/bootstrap-asa-failover-configuration/</link>
      <pubDate>Wed, 13 Feb 2013 20:33:00 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/bootstrap-asa-failover-configuration/</guid>
      <description>&lt;p&gt;Here the configuration I use for ASA failover 8.4+ based on my experience:&lt;/p&gt;&#xA;&lt;p&gt;On the primary:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;interface GigabitEthernet0/4 no shutdown failover failover lan unit primary failover lan interface FAILINK GigabitEthernet0/4 failover interface ip FAILINK 169.254.255.249 255.255.255.252 standby 169.254.255.250 failover key 222Th3Hak3Y222 failover link FAILINK GigabitEthernet0/4 prompt hostname state priority&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;On the secondary:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;interface GigabitEthernet0/4 no shutdown failover lan unit secondary failover lan interface FAILINK GigabitEthernet0/4 failover interface ip FAILINK 169.254.255.249 255.255.255.252 standby 169.254.255.250 failover key 222Th3Hak3Y222 failover link FAILINK GigabitEthernet0/4 failover&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;To validate:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Keepass, Putty et les connexions SSH automatiques</title>
      <link>https://jmanteau.fr/informatique/systeme/keepass-putty-et-les-connexions-ssh-automatiques/</link>
      <pubDate>Thu, 29 Nov 2012 10:29:30 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/systeme/keepass-putty-et-les-connexions-ssh-automatiques/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Comment enregistrer des connexions SSH dans Keepass et les lancer automatiquement avec Putty :&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Allez dans le menu Scheme-Specific :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2012/11/keepassputty11.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Et créer un nouveau scheme ssh2 :&lt;/p&gt;&#xA;&lt;p&gt;cmd://putty.exe -ssh {USERNAME}@{URL:RMVSCM} -pw {PASSWORD}&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2012/11/keepassputty21.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Déposer l’exécutable putty.exe dans le même dossier que Keepass (pour moi : C:Program Files (x86)KeePass Password Safe 2)&lt;/p&gt;&#xA;&lt;p&gt; &lt;/p&gt;&#xA;&lt;p&gt;On crée une entrée de cette manière (noter le ssh2://IP dans le champ URL) :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2012/11/keepassputty31.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt; &lt;/p&gt;&#xA;&lt;p&gt;On lance ensuite la connexion en double-cliquant dans la zone rouge. Putty s’ouvre alors déjà loggué sur le shell distant :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Configuring SCP on Checkpoint SecurePlatform (SPLAT)</title>
      <link>https://jmanteau.fr/informatique/securite/configuring-scp-on-checkpoint-secureplatform-splat/</link>
      <pubDate>Tue, 27 Nov 2012 14:26:11 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/configuring-scp-on-checkpoint-secureplatform-splat/</guid>
      <description>&lt;p&gt;The following error is found when tyring to scp to a SPLAT unconfigured for it:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt; [server] scp upgrade_export.tgz admin@xx.xx.xx.xx:/tmp The authenticity of host ‘xx.xx.xx.xx (xx.xx.xx.xx)’ can’t be established. RSA key fingerprint is 34:ff:52:0e:d6:57:53:12:d5:60:aa:7e:fa:e1:91:a8. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added ‘xx.xx.xx.xx’ (RSA) to the list of known hosts. admin@xx.xx.xx.xx’s password: lost connection&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;To resolve this alow SCP access with these steps:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Create a dedicated user to scp (it is not recommended to change root or your admin account):&lt;/p&gt;</description>
    </item>
    <item>
      <title>KeeMerge: Fusion de base Keepass</title>
      <link>https://jmanteau.fr/informatique/securite/keemerge-fusion-de-base-keepass/</link>
      <pubDate>Sat, 08 Sep 2012 13:00:07 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/keemerge-fusion-de-base-keepass/</guid>
      <description>&lt;p&gt;Suite à &lt;a href=&#34;http://www.jmanteau.fr/informatique/systeme/merge-de-fichiers-keepassx-ou-keepass-1-x-kdb/&#34;&gt;cet article&lt;/a&gt;, je met légèrement à jour le script et le rend disponible sur GitHub:&lt;/p&gt;&#xA;&lt;p&gt;Toujours aussi simple, j’espère que ce script pourra vous rendre service.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Communication</title>
      <link>https://jmanteau.fr/inutile/communication/</link>
      <pubDate>Thu, 12 Apr 2012 08:16:27 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/communication/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Entre :&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que je pense,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que je veux dire,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que je crois dire,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que je dis,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous avez envie d’entendre,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous croyez entendre,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous entendez,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous avez envie de comprendre,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous croyez comprendre,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Ce que vous comprenez,&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Il y a dix possibilités qu’on ait des difficultés à communiquer.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Mais essayons quand même…&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Bernard Werber&lt;/p&gt;</description>
    </item>
    <item>
      <title>Activation du SSH et gestion des clefs sur ASA 8.x</title>
      <link>https://jmanteau.fr/informatique/securite/activation-du-ssh-et-gestion-des-clefs-sur-asa-8-x/</link>
      <pubDate>Wed, 08 Feb 2012 13:44:01 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/activation-du-ssh-et-gestion-des-clefs-sur-asa-8-x/</guid>
      <description>&lt;p&gt;Devrant écrire une documentation rapide pour l’activation et la regénération de clefs pour un ASA en version 8.x, la voici:&lt;/p&gt;&#xA;&lt;h4 id=&#34;configuration&#34;&gt;Configuration&lt;/h4&gt;&#xA;&lt;p&gt;A partir de la console en mode configuration (conf t):&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;ciscoasa(config)# enable password xxxxx&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Il est recommandé de toujours mettre le mot de passe enable&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;ciscoasa(config)# username xxx password xxxx privilege 15&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;L’admin local et son mot de passe qui effectuera la connexion SSH. Pour plus d’infos sur les privilèges voir&lt;/p&gt;</description>
    </item>
    <item>
      <title>Merge de fichiers KeepassX ou Keepass 1.x (.kdb)</title>
      <link>https://jmanteau.fr/informatique/systeme/merge-de-fichiers-keepassx-ou-keepass-1-x-kdb/</link>
      <pubDate>Sat, 28 Jan 2012 13:49:41 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/systeme/merge-de-fichiers-keepassx-ou-keepass-1-x-kdb/</guid>
      <description>&lt;p&gt;J’ai eu le besoin de merger plusieurs fichiers base de données de Keepass. Si vous ne connaissez pas cet excellent gestionnaire de mot de passe allez faire un tour &lt;a href=&#34;http://keepass.info/&#34;&gt;ici&lt;/a&gt; ! Son pendant Linux/Mac OS X est &lt;a href=&#34;http://www.keepassx.org/&#34; title=&#34;KeepassX&#34;&gt;KeepassX&lt;/a&gt; compatible avec la branche 1.x de Keepass.&lt;/p&gt;&#xA;&lt;p&gt;Ce script (rapidement fait) prend plusieurs fichiers d’export XML Keepass (Menu -&amp;gt; Exporter sous -&amp;gt; XML)&lt;/p&gt;&#xA;&lt;p&gt;et les regroupent sous un fichier. Il prend l’entrée la plus récente en cas de conflit. Il affichera les conflits en sortie console.&lt;/p&gt;</description>
    </item>
    <item>
      <title>NCSI ou « connectivité limitée » sous Windows</title>
      <link>https://jmanteau.fr/informatique/securite/ncsi-ou-connectivite-limitee-sous-windows/</link>
      <pubDate>Tue, 06 Sep 2011 15:13:31 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/ncsi-ou-connectivite-limitee-sous-windows/</guid>
      <description>&lt;p&gt;Depuis Windows Vista et Seven lorsque vous connectez un ordinateur à un réseau filaire ou wifi l’icône vous indique l’état de la connexion: non connecté, connectivité limitée ou accès internet.&lt;/p&gt;&#xA;&lt;p&gt;Cette information est obtenue avec NCSI ( Network Connectivity Status Indicator ). Cette fonctionnalité fonctionne de la manière suivante:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;NCSI effectue une requête DNS sur &lt;a href=&#34;https://www.msftncsi.com&#34;&gt;www.msftncsi.com&lt;/a&gt;, puis demande la page &lt;a href=&#34;http://www.msftncsi.com/ncsi.txt&#34;&gt;http://www.msftncsi.com/ncsi.txt&lt;/a&gt;. C’est un fichier texte contenant Microsoft NCSI.&lt;/li&gt;&#xA;&lt;li&gt;NCSI effectue une requête DNS sur dns.msftncsi.com. Cela résout normalement en 131.107.255.255. Si cette vérification échoue on a un problème de connectivité voire un DNS menteur. Mais cette vérification est le plus souvent utilisée lors d’une authentification requise par une page web (type FreeWifi, NeufWifi ou tout autre hotspot).&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;La fonction part d’une bonne intention mais on envoie quand même une requête à Microsoft avec son IP … et les logs sont gardés:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Citation</title>
      <link>https://jmanteau.fr/divers/citation/</link>
      <pubDate>Fri, 29 Jul 2011 16:31:48 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/citation/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;« Anti-intellectualism has been a constant thread winding its way through our political and cultural life, nurtured by the false notion that democracy means that ‘my ignorance is just as good as your knowledge.&amp;rsquo; »&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;L’anti-intellectualisme a été un fil conducteur faisant son chemin notre vie politique et culturelle, nourrie par la fausse idée que la démocratie signifie que « mon ignorance vaut autant que vos connaissances».&lt;/p&gt;&#xA;&lt;p&gt;Isaac Asimov&lt;/p&gt;&#xA;&lt;/blockquote&gt;</description>
    </item>
    <item>
      <title>Time Machine corriger l’erreur 1134</title>
      <link>https://jmanteau.fr/posts/2011-07-11-timemachine-1134/</link>
      <pubDate>Mon, 11 Jul 2011 19:42:31 +0000</pubDate>
      <guid>https://jmanteau.fr/posts/2011-07-11-timemachine-1134/</guid>
      <description>&lt;p&gt;J’ai passé pas mal de temps sur les forums avant de trouver la solution. Le numéro d’erreur annoncé dans le log est variable (-1134 dans mon cas), et peut concerner n’importe quel fichier de n’importe quelle application… ce qui fait que les forums cafouillent souvent pour identifier le problème. L’origine de l’erreur semble être liée à une interruption brutale pendant la dernière sauvegarde (mise en veille du Mac, déconnexion du disque de sauvegarde, coupure réseau, …), et Time Machine cherche à rattraper le coup ensuite… et ça ne semble pas très au point. Je ne félicite pas Apple sur ce coup-là.&lt;/p&gt;</description>
    </item>
    <item>
      <title>UDP over SSH port forwarding</title>
      <link>https://jmanteau.fr/informatique/systeme/652/</link>
      <pubDate>Sun, 10 Jul 2011 19:42:31 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/systeme/652/</guid>
      <description>&lt;p&gt;Il est courant d’utliser les tunnels SSH pour faire transiter divers flux TCP. Cependant on ne peut utiliser le port forwarding directement avec du TCP (exemple du DNS ou SNMP). Ce billet vous montre les étapes à effectuer pour atteindre ce but.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Etapes par étapes&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Ouvrir un tunnel SSH avec TCP forward port&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Depuis votre machine, se connecter au serveur SSH distant avec l’option -L pour utiliser le port forwarding :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Illusions d’optique</title>
      <link>https://jmanteau.fr/inutile/illusions-doptique/</link>
      <pubDate>Sun, 27 Mar 2011 18:22:31 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/illusions-doptique/</guid>
      <description>&lt;p&gt;Toute ces images sont fixes (jpg ou png). Et pourtant elles bougent ! N’hésitez pas à les ouvrir en grand dans un onglet pour mieux apprécier l’illusion.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2011/03/Motion-illusion1221.png&#34;&gt;&lt;/a&gt; &lt;a href=&#34;http://jmanteau.fr/uploads/2011/03/5561477785_7bd80fa250_o1.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2011/03/0141.jpg&#34;&gt;&lt;/a&gt; &lt;a href=&#34;http://jmanteau.fr/uploads/2011/03/0141.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2011/03/395321.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mac OS X et wget</title>
      <link>https://jmanteau.fr/informatique/apple/mac-os-x-et-wget/</link>
      <pubDate>Sat, 12 Feb 2011 10:02:56 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/apple/mac-os-x-et-wget/</guid>
      <description>&lt;p&gt;Wget est un utilitaire bien pratique pour télécharger des fichiers en ligne de commande. Malheureusement OSX ne le propose par défaut. On peut bien sur l’installer via les ports mais sur un autre Mac que le sien on peut avoir besoin d’une solution plus rapide et moins intrusive.&lt;/p&gt;&#xA;&lt;p&gt;OSX propose heureusement curl qui peut remplir le même rôle avec l’option :&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;-O/--remote-name   Write output to a file named as the remote file&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Mais les habitudes ont la vie dure et donc pour simuler wget il est plus simple de rajouter un alias:&lt;/p&gt;</description>
    </item>
    <item>
      <title>i365</title>
      <link>https://jmanteau.fr/images/photos/i365/</link>
      <pubDate>Sun, 06 Feb 2011 20:27:47 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/i365/</guid>
      <description>&lt;p&gt;J’ai commencé à partir de début janvier un projet 365.&lt;/p&gt;&#xA;&lt;p&gt;Cela consiste à publier une photo par jour, préférablement prise le jour même. J’ai décidé de faire ce projet avec l’appareil photo que j’ai tous les jours dans la poche: un iPhone 4.&lt;/p&gt;&#xA;&lt;p&gt;Pour l’instant je suis assez surpris de la qualité des photos prises que l’on peut prendre avec ce téléphone. Il n’arrive pas à la cheville d’un réflex mais il peut remplacer sans problème un compact d’il y a 3-4 ans. Il y a également des limitations techniques mais apprendre à composer avec s’avère plutôt intéressant. A suivre donc !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Calotte glaciaire : de 2000 à 2010</title>
      <link>https://jmanteau.fr/divers/calotte-glaciaire-de-2000-a-2010/</link>
      <pubDate>Sun, 02 Jan 2011 21:25:03 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/calotte-glaciaire-de-2000-a-2010/</guid>
      <description>&lt;p&gt;Ce gif animé montre la calotte glaciaire en janvier 2000 puis en décembre 2010. Janvier 2000 étant la plus grande surface.&lt;/p&gt;&#xA;&lt;p&gt;Mais bien sur le réchauffement climatique n’est pas en cause …&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2011/01/polarcap_2000-20101.gif&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Et sans le gif animé ça donne:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2011/01/ice-overlay_slideshow1.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>[S50] Cette semaine j’ai appris…</title>
      <link>https://jmanteau.fr/divers/csja/s50-cette-semaine-jai-appris/</link>
      <pubDate>Sun, 19 Dec 2010 15:34:20 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/csja/s50-cette-semaine-jai-appris/</guid>
      <description>&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;T9 signifie « Text on 9 keys ».&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Si Appolo 10 avait atterri sur la lune au lieu de Appolo 11, au lieu de « L’aigle s’est posé » on aurait eu le droit à « Snoopy s’est posé ». Moins classe.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;L’objet le plus cher du monde est la Station Spatiale Internationale (ISS) pour un coût de 157 milliards de dollars. La suite du classement c’est &lt;a href=&#34;http://en.wikipedia.org/wiki/List_of_world%27s_most_expensive_single_objects&#34;&gt;ici&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://en.wikipedia.org/wiki/Emil_Krebs&#34;&gt;Emil Krebs&lt;/a&gt; (1867 – 1930) était un allemand qui parlait et écrivait 68 langues et avait en plus étudié plus de 120 autres. C’est là que le mot polyglotte prend tout son sens !&lt;/p&gt;</description>
    </item>
    <item>
      <title>A walled world</title>
      <link>https://jmanteau.fr/divers/a-walled-world/</link>
      <pubDate>Fri, 17 Dec 2010 08:44:42 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/a-walled-world/</guid>
      <description>&lt;pre&gt;&lt;code&gt;Ou la division du monde actuelle&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>La France n’est plus un état de droit</title>
      <link>https://jmanteau.fr/divers/la-france-nest-plus-un-etat-de-droit/</link>
      <pubDate>Thu, 16 Dec 2010 15:30:05 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/la-france-nest-plus-un-etat-de-droit/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;L’article 4 du projet de loi Loppsi a été adopté mercredi soir par l’Assemblée nationale. Celui-ci permet à l’exécutif de produire une liste des sites à bloquer au niveau des FAI. L’opposition, qui réclamait l’intervention du juge dans le processus de filtrage, n’a pas été entendue.  »&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.numerama.com/magazine/17605-loppsi-le-blocage-des-sites-sans-juge-est-adopte-par-les-deputes.html&#34;&gt;Numerama&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Je n’ai qu’une seule chose à dire…: nous ne sommes plus dans un état de droit.&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;L’état de droit est celui dans lequel les mandataires politiques — en démocratie : les élus — sont tenus par le droit qui a été édicté. La théorie de la séparation des pouvoirs de Montesquieu, sur laquelle se fondent la majorité des États occidentaux modernes, affirme la distinction des trois pouvoirs (exécutif, législatif et judiciaire) et leur limitation mutuelle.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Disques durs externes et Mac OS X</title>
      <link>https://jmanteau.fr/informatique/apple/disques-durs-externes-et-mac-os-x/</link>
      <pubDate>Thu, 16 Dec 2010 06:00:07 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/apple/disques-durs-externes-et-mac-os-x/</guid>
      <description>&lt;p&gt;Ou plus prosaïquement comment empecher l’apparition des .Trashes, .fseventsd, et .Spotlight-V100 sur les périphériques de stockage externes sous OS X.&lt;/p&gt;&#xA;&lt;p&gt;Si vous connectez un disque externe sous Leopard (et Snow), celui-ci se sent libre d’écrire ses fichiers d’indexations dessus !&lt;/p&gt;&#xA;&lt;p&gt;Voici comment faire pour empêcher ce comportement:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Pour empêcher l’indexation Spotlight, vous devez avoir un fichier appelé .metadata_never_index dans la racine du disque.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;touch /Volumes/MONDISQUE/.metadata_never_index&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Pour empêcher la création du repertoire .Trashes , vous devez avoir votre propre fichier (et non un répertoire) qui s’appelle .Trashes&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;touch /Volumes/MONDISQUE/.Trashes&lt;/p&gt;</description>
    </item>
    <item>
      <title>Changement de thème</title>
      <link>https://jmanteau.fr/divers/changement-de-theme/</link>
      <pubDate>Sun, 12 Dec 2010 21:04:34 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/changement-de-theme/</guid>
      <description>&lt;p&gt;Après plus de 2 ans de l’ancien thème (depuis août 2008), il était temps de changer.&lt;/p&gt;&#xA;&lt;p&gt;Fini donc NotepadWood :&lt;/p&gt;&#xA;&lt;p&gt;Et bienvenue à Skeptical arrangé à ma sauce :&lt;/p&gt;</description>
    </item>
    <item>
      <title>[S40] Cette semaine j’ai appris …</title>
      <link>https://jmanteau.fr/divers/csja/s40-cette-semaine-jai-appris/</link>
      <pubDate>Mon, 27 Sep 2010 11:24:39 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/csja/s40-cette-semaine-jai-appris/</guid>
      <description>&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Que l’ouverture de la Mer Rouge par Moïse fuyant l’Egypte pourrait avoir une &lt;a href=&#34;http://www.wired.com/wiredscience/2010/09/red-sea-parting/&#34;&gt;explication scientifique&lt;/a&gt; :&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Chaque cellule possède &lt;a href=&#34;http://granit.jouy.inra.fr/productions-animales/2000_hors-serie/Prod_Anim_2000_hs_hs_02.pdf&#34;&gt;1,8 m d’ADN&lt;/a&gt;. Le &lt;a href=&#34;http://bio.m2osw.com/gcartable/cellules.htm&#34;&gt;nombre de cellules dans le corps&lt;/a&gt; est de 10^14. La distance Terre Soleil est de 150 millions de km (&lt;a href=&#34;http://fr.wikipedia.org/wiki/Unit%C3%A9_astronomique&#34;&gt;1 UA&lt;/a&gt;). Avec la longueur d’ADN contenu dans le corps humain on peut faire (1.8*10^14)/(1.5*10^11)= 1200 UA.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;L’ADN déroulé du corps humain équivaut à 600 aller-retour vers le Soleil !&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://en.wikipedia.org/wiki/Feodor_Vassilyev&#34;&gt;Feodor Vassilyev&lt;/a&gt; est une &lt;strong&gt;femme russe ayant donné naissance à 69 enfants&lt;/strong&gt; : 16 fois des jumeaux, 7 fois des triplés et 4 fois des quadruplés en 27 grossesses sur une période de 40 ans.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Connaître l’ensemble des types de fichiers dans un répertoire</title>
      <link>https://jmanteau.fr/informatique/linux/connaitre-lensemble-des-types-de-fichiers-dans-un-repertoire/</link>
      <pubDate>Sun, 12 Sep 2010 17:06:37 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/connaitre-lensemble-des-types-de-fichiers-dans-un-repertoire/</guid>
      <description>&lt;p&gt;Une ligne rapide pour avoir l’ensemble des types de fichiers dans un répertoire :&lt;/p&gt;&#xA;&lt;p&gt;find REPERTOIRE -type f |  awk -F . &amp;lsquo;{print $NF}&amp;rsquo; | sort | uniq&lt;/p&gt;&#xA;&lt;p&gt;Ou avec le décompte trié par extension :&lt;/p&gt;&#xA;&lt;p&gt;find REPERTOIRE -type f |  awk -F . &amp;lsquo;{print $NF}&amp;rsquo; | sort | uniq -c | sort -n&lt;/p&gt;</description>
    </item>
    <item>
      <title>[S34] Cette semaine j’ai appris …</title>
      <link>https://jmanteau.fr/divers/csja/s34-cette-semaine-jai-appris/</link>
      <pubDate>Fri, 20 Aug 2010 12:42:21 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/csja/s34-cette-semaine-jai-appris/</guid>
      <description>&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Que le Munchkin n’est pas seulement un &lt;a href=&#34;http://fr.wikipedia.org/wiki/Munchkin_%28jeu%29&#34;&gt;jeu&lt;/a&gt; mais aussi un &lt;a href=&#34;http://fr.wikipedia.org/wiki/Munchkin_%28chat%29&#34;&gt;chat&lt;/a&gt; !&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;De l’existence des &lt;a href=&#34;http://www.andaman.org/BOOK/chapter8/text8.htm#sentineli&#34;&gt;Sentinelles&lt;/a&gt;, une tribu isolé qui vit sur une &lt;a href=&#34;http://maps.google.fr/maps?f=q&amp;source=s_q&amp;hl=fr&amp;q=%C3%8Ele+de+North+Sentinel,+Andaman,+Andaman+et+Nicobar,+Inde&amp;sll=46.75984,1.738281&amp;sspn=8.9871,23.269043&amp;ie=UTF8&amp;cd=1&amp;geocode=FZ0-sAAdI19_BQ&amp;split=0&amp;hq=&amp;hnear=%C3%8Ele+de+North+Sentinel,+Inde&amp;ll=11.558239,92.25769&amp;spn=0.100404,0.181789&amp;t=h&amp;z=13&#34;&gt;île&lt;/a&gt; « appartenant » à l’Inde et refusant tout contact avec la « civilisation » (à coups de sagaie et de flèches).&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;De l’origine de shire dans Bedfordshire, Gloucestershire,Worcestershire : Le &lt;a href=&#34;http://en.wikipedia.org/wiki/Shire&#34;&gt;Shire&lt;/a&gt; désignait à l’origine les circonscriptions administratives en usage chez les Anglo-saxons de l’Angleterre pré-normande et équivalent à des comtés.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Que les dauphins s’appellent entre eux avec leurs prénoms : &lt;a href=&#34;http://news.nationalgeographic.com/news/2006/05/060508_dolphins.html&#34;&gt;lien&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>France.fr est de retour</title>
      <link>https://jmanteau.fr/informatique/web/france-fr-est-de-retour/</link>
      <pubDate>Mon, 16 Aug 2010 09:00:53 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/france-fr-est-de-retour/</guid>
      <description>&lt;p&gt;Après les péripéties du mois de juillet pour &lt;a href=&#34;http://www.france.fr&#34;&gt;le site&lt;/a&gt; représentant notre chère France, il est revenu en ligne.&lt;/p&gt;&#xA;&lt;p&gt;Mais un petit coup d’œil derrière la scène monte quelque chose d’assez marrant:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2010/08/france_fr1.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;L’information intéressante suivante est fourni par le  whois:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  IP Information for 213.155.157.41&#xA;&#xA;&#xA;&#xA;&#xA;&#xA;        IP Location:&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;United Kingdom Akamai International B.v&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;        IP Address:&#xA;      &#xA;&#xA;        213.155.157.41  &#xA;&#xA;&#xA;&#xA;&#xA;&#xA;  inetnum:        213.155.157.0 – 213.155.157.255 netname:        AKAMAI descr:          Akamai International B.V. org:            ORG-AIB7-RIPE country:        GB admin-c:        NARA1-RIPE tech-c:         NARA1-RIPE status:         ASSIGNED PA mnt-by:         TELIANET-LIR source:         RIPE # Filtered&#xA;&#xA;&#xA;&#xA;Akamai est un CDN : Content Delivery Network constitué d’ordinateurs reliés en réseau à travers Internet, et qui coopèrent afin de mettre à disposition du contenu ou des données (généralement du contenu multimédia volumineux) à des utilisateurs. Plus d’info ici.&#xA;&#xA;&#xA;Pour résoudre les problèmes de charges venant de la conception du site web (de ce que j’ai pu en lire), au lieu de refaire le site totalement (il tourne toujours sous Drupal), même si il a du être optimisé, l’hébergement est maintenant assuré par Akamai ce qui permet une meilleure disponibilité du site.&#xA;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>La guerre froide, la photocopieuse et son réparateur</title>
      <link>https://jmanteau.fr/inutile/la-guerre-froide-la-photocopieuse-et-son-reparateur/</link>
      <pubDate>Wed, 11 Aug 2010 15:28:06 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/la-guerre-froide-la-photocopieuse-et-son-reparateur/</guid>
      <description>&lt;p&gt;Durant la guerre froide, un groupe d’ingénieur de chez Xerox a assisté la CIA dans la création d’un appareil photo miniature marchant aux microfilms et s’installant dans une photocopieuse. Il dupliquait ainsi tous les documents passant dans celle-ci.&lt;/p&gt;&#xA;&lt;p&gt;A cette époque, la révolution introduite par la photocopieuse était telle que même le Kremlin avait mis en place cette technologie pour se débarrasser du fardeau de la copie à la main.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Un script pour les lier tous</title>
      <link>https://jmanteau.fr/informatique/systeme/un-script-pour-les-lier-tous/</link>
      <pubDate>Tue, 18 May 2010 12:49:16 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/systeme/un-script-pour-les-lier-tous/</guid>
      <description>&lt;p&gt;MultiCD. Ce petit script est juste superbe.&lt;/p&gt;&#xA;&lt;p&gt;Il permet de regrouper en une seule iso plusieurs isos distinctes. Le site vous l’expliquera mieux que moi :&lt;/p&gt;&#xA;&lt;p&gt;Ainsi en gravant une seule ISO vous retrouvez toutes vos distributions facilement.&lt;/p&gt;&#xA;&lt;p&gt;Pour ma part je vais me faire une ISO avec:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Backtrack&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://www.tinycorelinux.com/&#34;&gt;Tiny Core Linux&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://geexbox.org/en/index.html/&#34;&gt;GeeXboX&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://www.sysresccd.org/&#34;&gt;SystemRescueCd&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://gparted.sourceforge.net/&#34;&gt;GParted Live&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://home.eunet.no/pnordahl/ntpasswd/&#34;&gt;Offline NT Password &amp;amp; Registry Editor&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://www.clonezilla.org/&#34;&gt;Clonezilla&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://www.ubuntu.com/&#34;&gt;Ubuntu&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://www.ultimatebootcd.com/&#34;&gt;Ultimate Boot CD&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Monter un partage Samba authentifiant avec /etc/fstab</title>
      <link>https://jmanteau.fr/informatique/linux/monter-un-partage-samba-authentifiant-avec-etcfstab/</link>
      <pubDate>Mon, 17 May 2010 11:41:13 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/monter-un-partage-samba-authentifiant-avec-etcfstab/</guid>
      <description>&lt;p&gt;Travailler dans un environnement professionnel avec un système Linux oblige à accéder aux ressources Windows également. L’accès aux fichiers partagé Windows est un grand classique (Samba, SMB, CIFS, etc …).&lt;/p&gt;&#xA;&lt;p&gt;KDE4 propose une découverte des fichiers partagés mais le parcours des volumes est très lent. Afin d’accélerer celui-ci la meilleure solution consiste à monter en dur les répertoires les plus couramment utilisés.&lt;/p&gt;&#xA;&lt;p&gt;La ligne de commande est la suivante :&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;//Serveur/Partage /mnt/PointDeMontage cifs rw,_netdev,uid=1000,gid=1000,user=USER,password=PASS,domain=VotreDomain,ip=IpDuServeurDeFichier,iocharset=utf8 0 0&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le libre, un phénomène en expansion</title>
      <link>https://jmanteau.fr/divers/le-libre-un-phenomene-en-expansion/</link>
      <pubDate>Wed, 28 Apr 2010 14:16:27 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/le-libre-un-phenomene-en-expansion/</guid>
      <description>&lt;p&gt;Vous vous rappelez peut-être de l’histoire de la censure d’un texte sur la culture libre d’une exposition sur la contrefaçon par l’INPI. L’auteur, Isabelle Vodjdani, récapitule l’histoire sur &lt;a href=&#34;http://www.transactiv-exe.org/spip.php?article141&#34;&gt;son site&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Je reproduis ici son texte qu’y résume très bien ce qu’est le libre, merci à elle pour celui-ci.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Le libre, un phénomène en expansion&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;Dans le cadre du droit d’auteur qui protège les créations littéraires et artistiques, un nombre croissant d’auteurs choisissent de mettre leurs œuvres à la disposition du public avec un type de contrats bien spécifiques qu’on appelle des licences libres. Ces licences autorisent quiconque à diffuser des copies de l’œuvre. Elles l’autorisent également à publier sous sa propre responsabilité d’auteur des versions modifiées de l’œuvre. Ces autorisations sont assorties de deux conditions :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Week-end en Touraine et A380 et Concorde à Blagnac</title>
      <link>https://jmanteau.fr/images/photos/week-end-en-touraine-et-a380-et-concorde-a-blagnac/</link>
      <pubDate>Fri, 16 Apr 2010 22:40:09 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/week-end-en-touraine-et-a380-et-concorde-a-blagnac/</guid>
      <description>&lt;p&gt;Petite séance de rattrapage avec deux séries.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Réinitialiser le lecteur RSS par défaut de Firefox</title>
      <link>https://jmanteau.fr/informatique/web/reinitialiser-le-lecteur-rss-par-defaut-de-firefox/</link>
      <pubDate>Mon, 05 Apr 2010 07:52:07 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/reinitialiser-le-lecteur-rss-par-defaut-de-firefox/</guid>
      <description>&lt;p&gt;Si vous utlisez les RSS et Firefox, vous utilisez alors sans doute l’icone à droite de la barre d’adresse qui permet d’enregistrer le flux dans son lecteur via une page qui ressemble à cela :&lt;/p&gt;&#xA;&lt;p&gt;Le problème est que une fois que l’on a choisi un lecteur par défaut, il est difficile de faire marche arrière et tout flux que l’on veut enregister passe par le lecteur.&lt;/p&gt;&#xA;&lt;p&gt;Il suffit pourtant de taper dans la barre d’adresse:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Petites astuces VMware</title>
      <link>https://jmanteau.fr/informatique/systeme/petites-astuces-vmware/</link>
      <pubDate>Thu, 04 Mar 2010 14:06:46 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/systeme/petites-astuces-vmware/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Accéder au TTYs d’une machine virtuelle Linux/BSD sous VMware Player ou dans une console VMware ESX&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Presser CTRL+ALT+ESPACE&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;relacher ESPACE en maintenant CTRL+ALT&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;presser F(1-7) pour accéder au tty désiré&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;strong&gt;Activer le SSH sous ESXi 4 Server&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Entrer dans la console ESX avec ALT+F1&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Tapez unsupported (rien ne s’affiche, c’est normal) puis Entrée&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Entrez ensuite le mot de passe root (attention clavier en qwerty)&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Editez avec vi le fichier /etc/inetd.conf:&#xA;vi /etc/inetd.conf&lt;/p&gt;</description>
    </item>
    <item>
      <title>Gel du matin fin Janvier</title>
      <link>https://jmanteau.fr/images/photos/gel-du-matin-fin-janvier/</link>
      <pubDate>Tue, 02 Feb 2010 21:28:42 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/gel-du-matin-fin-janvier/</guid>
      <description>&lt;p&gt;Photos prises pour changer avec un Sony Alpha 200&lt;/p&gt;&#xA;&lt;p&gt;Et le lien direct vers la gallerie  c’est &lt;a href=&#34;http://www.flickr.com/photos/jmanteau/sets/72157623329539512/&#34;&gt;ici&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Soutenons la Quadrature du Net</title>
      <link>https://jmanteau.fr/divers/soutenons-la-quadrature-du-net/</link>
      <pubDate>Fri, 22 Jan 2010 20:56:19 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/soutenons-la-quadrature-du-net/</guid>
      <description>&lt;p&gt;Parce que Hadopi en version réduite c’est grâce à eux, parce que Loppsi arrive, que ACTA essaye de passer discrétement, nous devons soutenir la Quadrature du Net. Pour nous, pour nos droits et nos libertés.&lt;/p&gt;&#xA;&lt;p&gt;Le lien vers la page de soutien pour la Quadrature du Net&lt;/p&gt;&#xA;&lt;p&gt;[Présentation de la Quadrature du Net&lt;/p&gt;&#xA;&lt;p&gt;]&lt;a href=&#34;http://www.laquadrature.net/fr/qui-sommes-nous&#34;&gt;1&lt;/a&gt; &lt;a href=&#34;http://www.numerama.com/magazine/14912-la-quadrature-du-net-a-besoin-de-70000-euros-maj.html&#34;&gt;Un article de Numerama sur le sujet&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Un exemple de leur action est la loi LOPPSI : à 15 jours de la présentation à l’assemblée les médias ne parlent pas de la loi LOPPSI !!!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Build-essential sur CentOS / RHEL / Fedora</title>
      <link>https://jmanteau.fr/informatique/linux/build-essential-sur-centos-rhel-fedora/</link>
      <pubDate>Mon, 18 Jan 2010 12:58:26 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/build-essential-sur-centos-rhel-fedora/</guid>
      <description>&lt;p&gt;Un paquet qui me manque souvent sous  CentOS / RHEL / Fedora est le paquet build-essential propre aux distributions dérivées de Debian.&lt;/p&gt;&#xA;&lt;p&gt;Voici l’équivalence que j’utilise :&lt;/p&gt;&#xA;&lt;p&gt;yum install binutils gcc gcc-c++ make patch libgomp glibc-headers  glibc-devel kernel-headers kernel-devel bison flex&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Je le compléterai selon mes besoins.&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Historique Google</title>
      <link>https://jmanteau.fr/informatique/historique-google/</link>
      <pubDate>Wed, 30 Dec 2009 15:16:18 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/historique-google/</guid>
      <description>&lt;p&gt;De temps en temps, j’y jette un coup d’oeil…&lt;/p&gt;&#xA;&lt;p&gt;Vous avez un compte gmail ? Allez donc faire un tour sur l’&lt;a href=&#34;http://www.google.com/history/&#34;&gt;Historique Google&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Vous pouvez gérer cette fonctionnalité et supprimez des éléments depuis le &lt;a href=&#34;https://www.google.com/dashboard/&#34;&gt;Google Dashboard&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Big Brother, disiez-vous ?&lt;/p&gt;</description>
    </item>
    <item>
      <title>VirtualBox et Windows 98</title>
      <link>https://jmanteau.fr/informatique/virtualbox-et-windows-98/</link>
      <pubDate>Sun, 27 Dec 2009 16:25:46 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/virtualbox-et-windows-98/</guid>
      <description>&lt;p&gt;Afin de faire fonctionner un ancien jeu de Tarot sous Ubuntu, il m’a fallu installer un Windows 98 sous VirtualBox. En effet, Wine crashait lamentablement à l’exécution.&lt;/p&gt;&#xA;&lt;p&gt;Après avoir récupérer un CD de Windows 98 (original ou une des versions traînant sur l’Internet), il faut créer la Virtual Box. Afin d’éviter l’erreur « Fault outside MS DOS Extender » je vous conseille de décocher l’option de virtualisation matérielle « VT-x/AMD-V » dans « Système-&amp;gt;Accélération ».&lt;/p&gt;</description>
    </item>
    <item>
      <title>Google Chrome n’est pas un navigateur</title>
      <link>https://jmanteau.fr/informatique/web/google-chrome-nest-pas-un-navigateur/</link>
      <pubDate>Wed, 23 Dec 2009 10:06:05 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/google-chrome-nest-pas-un-navigateur/</guid>
      <description>&lt;p&gt;La preuve en image :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2009/12/chrome_error1.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;J’ai obtenu l’erreur en faisant un clic droit sur un fichier HTML sur le disque et en faisant « Ouvrir avec »-&amp;gt;Chrome.&lt;/p&gt;&#xA;&lt;p&gt;Le titre était évident pour l’aspect sensationnel car cette erreur à part, je suis très content de cette bêta de Chrome. Au point que pour aller chercher une info rapidement,  je lance de plus en plus Chrome au lieu du mastodonte Firefox.&lt;/p&gt;&#xA;&lt;p&gt;En résumé, pour l’instant je suis en phase d’observation …&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le câble Ethernet successeur du HDMI ?</title>
      <link>https://jmanteau.fr/informatique/bazar/le-cable-ethernet-successeur-du-hdmi/</link>
      <pubDate>Mon, 21 Dec 2009 05:00:03 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/bazar/le-cable-ethernet-successeur-du-hdmi/</guid>
      <description>&lt;p&gt;&lt;em&gt;MAJ le 21/12&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Apparemment les industriels poursuivent dans cette voie vu que LG, Samsung, Sony et Valens ont créés une alliance, le HDBaseT Alliance afin de favoriser la standardisation de la HD via ethernet.&lt;/p&gt;&#xA;&lt;p&gt;Source : &lt;a href=&#34;http://www.techno-science.net/?onglet=news&amp;news=7336&#34;&gt;Techno-Science&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;em&gt;Première publication le 7 avril 2009&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Article repris de TechnoSciences&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Alors que la connectique HDMI s’impose aujourd’hui en tant que standard pour la transmission filaire des contenus audio/vidéo en Haute Définition (HD), le groupe Broadcom Corporation vient d’annoncer avoir réalisé une innovation qui mérite aujourd’hui toute notre attention. Celle-ci vise particulièrement le protocole Ethernet (Ethernet est un protocole de réseau informatique à commutation de paquets implémentant la couche physique et la…).&lt;/p&gt;</description>
    </item>
    <item>
      <title>OpenBSD 4.6 et l’ACPI</title>
      <link>https://jmanteau.fr/informatique/linux/openbsd-4-6-et-lacpi/</link>
      <pubDate>Wed, 11 Nov 2009 21:02:57 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/openbsd-4-6-et-lacpi/</guid>
      <description>&lt;p&gt;Suite à un problème d’écran, j’ai pu récupérer de chez mes parents mon ancien PC portable qui va devenir serveur et à terme firewall.&lt;/p&gt;&#xA;&lt;p&gt;Un bug  m’a empêché de rédémarrer après l’installation de la dernière version d’OpenBSD (oh le beau Kernel Panic).&lt;/p&gt;&#xA;&lt;p&gt;Mon flair m’a fait suspecter l’ACPI (qui avait également été en cause dans un certain nombre de problèmes Linux sur ce portable).  Au boot, nous allons donc désactiver l’ACPI.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le poids de l’argent</title>
      <link>https://jmanteau.fr/inutile/le-poids-de-largent/</link>
      <pubDate>Mon, 09 Nov 2009 13:02:15 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/le-poids-de-largent/</guid>
      <description>&lt;p&gt;Sur le site de la Banque de France on trouve ce &lt;a href=&#34;http://www.banque-france.fr/fr/instit/billets/histeuro/euro_pt/billetstech.htm&#34;&gt;genre d’information:&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;  Coupure&#xA;&#xA;&#xA;  Thème&#xA;&#xA;&#xA;  Dessin&#xA;&#xA;&#xA;  Dominante&#xA;&#xA;&#xA;  Taille (mm)&#xA;&#xA;&#xA;  Poids* (g)&#xA;&#xA;&#xA;&#xA;&#xA;  5 euros&#xA;&#xA;&#xA;  style antique (gréco-romain)&#xA;&#xA;&#xA;  Arc de triomphe et aqueduc&#xA;&#xA;&#xA;  Gris&#xA;&#xA;&#xA;  120 x 62&#xA;&#xA;&#xA;  0,6&#xA;&#xA;&#xA;&#xA;&#xA;  10 euros&#xA;&#xA;&#xA;  style roman&#xA;&#xA;&#xA;  Arche et pont roman&#xA;&#xA;&#xA;  Rouge&#xA;&#xA;&#xA;  127 x 67&#xA;&#xA;&#xA;  0,7&#xA;&#xA;&#xA;&#xA;&#xA;  20 euros&#xA;&#xA;&#xA;  style gothique&#xA;&#xA;&#xA;  Vitrail en ogive et pont gothique&#xA;&#xA;&#xA;  Bleu&#xA;&#xA;&#xA;  133 x 72&#xA;&#xA;&#xA;  0,8&#xA;&#xA;&#xA;&#xA;&#xA;  50 euros&#xA;&#xA;&#xA;  style classique (renaissance)&#xA;&#xA;&#xA;  Fronton classique et pont renaissance&#xA;&#xA;&#xA;  Orange&#xA;&#xA;&#xA;  140 x 77&#xA;&#xA;&#xA;  0,9&#xA;&#xA;&#xA;&#xA;&#xA;  100 euros&#xA;&#xA;&#xA;  style baroque et rococo&#xA;&#xA;&#xA;  Porche baroque aux atlantes et pont XVIIIème&#xA;&#xA;&#xA;  Vert&#xA;&#xA;&#xA;  147 x 82&#xA;&#xA;&#xA;  1&#xA;&#xA;&#xA;&#xA;&#xA;  200 euros&#xA;&#xA;&#xA;  architecture du XIXe (verre et acier)&#xA;&#xA;&#xA;  Serre botanique et viaduc métallique&#xA;&#xA;&#xA;  Jaune&#xA;&#xA;&#xA;  153 x 82&#xA;&#xA;&#xA;  1,1&#xA;&#xA;&#xA;&#xA;&#xA;  500 euros&#xA;&#xA;&#xA;  architecture du XXe (moderne)&#xA;&#xA;&#xA;  Façade en verre et pont à haubans&#xA;&#xA;&#xA;  Violet&#xA;&#xA;&#xA;  160 x 82&#xA;&#xA;&#xA;  1,1&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;Ce qui fait que l’on peut s’amuser à faire des calculs intéressants …&lt;/p&gt;</description>
    </item>
    <item>
      <title>Aspirer un site web avec wget</title>
      <link>https://jmanteau.fr/informatique/linux/aspirer-un-site-web-avec-wget/</link>
      <pubDate>Mon, 02 Nov 2009 10:35:43 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/aspirer-un-site-web-avec-wget/</guid>
      <description>&lt;p&gt;Vous souhaitez capturer un site web pour une consulation locale ? Il existe des programmes spécialisées comme &lt;a href=&#34;http://www.httrack.com/page/21/fr/index.html&#34;&gt;HTTtrack&lt;/a&gt; mais wget peut largement s’en charger.&lt;/p&gt;&#xA;&lt;p&gt;Le site sera téléchargé dans le répertoire courant. Il faut donc se diriger vers le répertoire où l’on souhaite sauvegarder le site.&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;wget -r -k -np -T 10 -t 3 &lt;a href=&#34;http://www.monsiteamoi/une-sous-page/&#34;&gt;http://www.monsiteamoi/une-sous-page/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;-r : signifie que le téléchargement sera récursif (il récupère les liens et se dirige vers eux)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Culture Générale #1</title>
      <link>https://jmanteau.fr/inutile/culture-generale-1/</link>
      <pubDate>Mon, 19 Oct 2009 21:20:29 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/culture-generale-1/</guid>
      <description>&lt;p&gt;Le niveau zéro des cartes française correspond à la hauteur d’eau d’une basse mer de coefficient 120.&lt;/p&gt;&#xA;&lt;p&gt;Et oui !&lt;/p&gt;&#xA;&lt;p&gt;Approfondissement &lt;a href=&#34;http://www.alsapresse.com/jdj/97/01/26/IGF/1/article_3.html&#34;&gt;ici&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Logo pour le Bilbo Planet</title>
      <link>https://jmanteau.fr/images/graphisme/logo-pour-le-bilbo-planet/</link>
      <pubDate>Sun, 13 Sep 2009 15:59:59 +0000</pubDate>
      <guid>https://jmanteau.fr/images/graphisme/logo-pour-le-bilbo-planet/</guid>
      <description>&lt;p&gt;Comme l’indique &lt;a href=&#34;http://linuxerie.midiblogs.com/archive/2009/09/12/bilboplanet-bilbolanet-cherche-son-logo.html&#34;&gt;cet article&lt;/a&gt; de La Linuxerie, le Bilbo Planet recherche un logo.&lt;/p&gt;&#xA;&lt;p&gt;J’ai réalisé un logo rapide en thème avec la galaxie (enfin les étoiles).&lt;/p&gt;&#xA;&lt;p&gt;Si l’idée plait ou vous avez des idées d’amélioration n’hésitez pas à me contactez ! (mail dans la partie CV)&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macport, Porticus et PATH</title>
      <link>https://jmanteau.fr/informatique/linux/macport-porticus-et-path/</link>
      <pubDate>Sat, 29 Aug 2009 17:40:18 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/macport-porticus-et-path/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.macports.org/&#34;&gt;MacPorts&lt;/a&gt;, anciennement DarwinPorts, est un gestionnaire de paquets libre fonctionnant sous mac Mac OS X&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://porticus.alittledrop.com/&#34;&gt;Porticus&lt;/a&gt; est une interface graphique Cocoa permettant d’utiliser MacPorts de manière intuitive. Un moteur de recherche permet de retrouver facilement une application a installer et l’application s’interface avec Growl pour fournir des informations sur l’avancement des compilations.&lt;/p&gt;&#xA;&lt;p&gt;Toutes les applications sont installées sous /opt/local/ . Par défaut MacOS ne va chercher dans ces répertoires. L’exécution des logiciels ne peut se faire directement, on est obligé d’aller les chercher dans leur répertoire.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mot de passe root perdu</title>
      <link>https://jmanteau.fr/informatique/linux/mot-de-passe-root-perdu/</link>
      <pubDate>Fri, 14 Aug 2009 16:10:16 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/mot-de-passe-root-perdu/</guid>
      <description>&lt;p&gt;Il peut arriver d’avoir des trous de mémoire ou même de se foirer lamentablement et se rendre compte qu’on a fait deux fois la même faute de frappe et de ne pas la retrouver. Bref.&lt;/p&gt;&#xA;&lt;p&gt;Généralement on a les boules.&lt;/p&gt;&#xA;&lt;p&gt;Heureusement c’est assez simple d’avoir un accès root à une machine si l’on dispose physiquement de la machine et que l’on n’a pas verrouillé grub.&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Objectif&lt;/strong&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Récupérer le mot de passe root&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;strong&gt;Prérequis:&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Paris et Versailles</title>
      <link>https://jmanteau.fr/images/photos/paris-et-versailles/</link>
      <pubDate>Thu, 13 Aug 2009 17:35:57 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/paris-et-versailles/</guid>
      <description></description>
    </item>
    <item>
      <title>Blogmotion</title>
      <link>https://jmanteau.fr/informatique/web/blogmotion/</link>
      <pubDate>Thu, 23 Jul 2009 07:38:21 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/blogmotion/</guid>
      <description>&lt;p&gt;Un petit lien vers le concours d’un blog que je suis régulièrement:&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://blogmotion.fr/le-blog/cadeau-cadre-photo-3621&#34; title=&#34;Concours : Un Cadre Photo Numérique à Gagner sur Blogmotion&#34;&gt;&lt;br&gt;&#xA;&lt;img alt=&#34;Cadre Photo à Gagner sur Blogmotion&#34; src=&#34;http://tiplus.free.fr/blogmotion/concours-bm.png&#34;&gt;&lt;br&gt;&#xA;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Plus d’info sur: &lt;a href=&#34;http://blogmotion.fr/le-blog/cadeau-cadre-photo-3621#ixzz0M47yQnLk&#34;&gt;Blogmotion&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;N’hésitez pas à l’ajoutez dans vos flux RSS !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Photos du Cantal</title>
      <link>https://jmanteau.fr/images/photos/photos-du-cantal/</link>
      <pubDate>Thu, 23 Jul 2009 07:35:54 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/photos-du-cantal/</guid>
      <description>&lt;p&gt;Fabrication du Pain:&lt;/p&gt;&#xA;&lt;p&gt;Une rencontre avec deux cerfs:&lt;/p&gt;&#xA;&lt;p&gt;Des Paysages:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Template Python Système</title>
      <link>https://jmanteau.fr/informatique/python/template-python-systeme/</link>
      <pubDate>Mon, 08 Jun 2009 16:38:02 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/python/template-python-systeme/</guid>
      <description>&lt;p&gt;Voici un template de fichier Python qui m’est bien utile.&lt;/p&gt;&#xA;&lt;p&gt;Il fournit les outils pour :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;faire son script en objet&lt;/li&gt;&#xA;&lt;li&gt;logguer les évenements en console et dans un ficher =&amp;gt; fini les print pour debugger&lt;/li&gt;&#xA;&lt;li&gt;gère le parsage des options passées au programme&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Pour le voir c’est par ici: &lt;a href=&#34;http://www.jmanteau.fr/uploads/2009/06/template.py&#34; title=&#34;Template pytnon&#34;&gt;Template Python&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vim</title>
      <link>https://jmanteau.fr/informatique/linux/vim/</link>
      <pubDate>Wed, 03 Jun 2009 20:27:50 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/vim/</guid>
      <description>&lt;p&gt;Quelques petites ressources pour Vim: plus je le connais, plus je l’apprécie !&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;ftp://ftp.vim.org/pub/vim/doc/book/vimbook-OPL.pdf&#34;&gt;Vim Cookbook: The Bible&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://dailyvim.blogspot.com/&#34;&gt;Blog avec pleins d’astuces sur Vim&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://vim.runpaint.org/&#34;&gt;Un autre livre de recettes sur Vim intéressant&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Italie</title>
      <link>https://jmanteau.fr/images/photos/italie/</link>
      <pubDate>Tue, 26 May 2009 13:44:33 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/italie/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.flickr.com/photos/jmanteau/sets/72157618706542799/&#34;&gt;La galerie sur Flickr&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vue de haut</title>
      <link>https://jmanteau.fr/images/attrape-photons/vue-de-haut/</link>
      <pubDate>Sun, 12 Apr 2009 11:21:32 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vue-de-haut/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-12.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>A la queue leu leu !</title>
      <link>https://jmanteau.fr/images/attrape-photons/a-la-queue-leu-leu/</link>
      <pubDate>Sat, 11 Apr 2009 06:10:25 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/a-la-queue-leu-leu/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-10.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mort du roi</title>
      <link>https://jmanteau.fr/images/attrape-photons/mort-du-roi/</link>
      <pubDate>Wed, 08 Apr 2009 19:54:54 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/mort-du-roi/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-08.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>En ligne</title>
      <link>https://jmanteau.fr/images/attrape-photons/en-ligne/</link>
      <pubDate>Mon, 06 Apr 2009 09:02:12 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/en-ligne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-06.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Encerclée</title>
      <link>https://jmanteau.fr/images/attrape-photons/encerclee/</link>
      <pubDate>Sun, 05 Apr 2009 03:51:24 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/encerclee/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-04.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dark Horse</title>
      <link>https://jmanteau.fr/images/attrape-photons/dark-horse/</link>
      <pubDate>Thu, 02 Apr 2009 14:40:53 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/dark-horse/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-04-02.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Yeux bleus constellés de soleils</title>
      <link>https://jmanteau.fr/images/attrape-photons/yeux-bleus-constelles-de-soleils/</link>
      <pubDate>Sun, 29 Mar 2009 20:49:45 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/yeux-bleus-constelles-de-soleils/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-29.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Soleil couchant</title>
      <link>https://jmanteau.fr/images/attrape-photons/soleil-couchant/</link>
      <pubDate>Sat, 28 Mar 2009 13:57:29 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/soleil-couchant/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-28.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bateau sur soleil couchant</title>
      <link>https://jmanteau.fr/images/attrape-photons/bateau-sur-soleil-couchant/</link>
      <pubDate>Fri, 27 Mar 2009 07:33:03 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/bateau-sur-soleil-couchant/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-26.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Fleurs de pommier</title>
      <link>https://jmanteau.fr/images/attrape-photons/fleurs-de-pommier/</link>
      <pubDate>Tue, 24 Mar 2009 19:18:18 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/fleurs-de-pommier/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-24.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vieil abri</title>
      <link>https://jmanteau.fr/images/attrape-photons/vieil-abri-2/</link>
      <pubDate>Mon, 23 Mar 2009 11:21:26 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vieil-abri-2/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-22.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vitrail et Orgue</title>
      <link>https://jmanteau.fr/images/attrape-photons/vitrail-et-orgue/</link>
      <pubDate>Fri, 20 Mar 2009 23:10:08 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vitrail-et-orgue/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-20.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Un tournesol</title>
      <link>https://jmanteau.fr/images/attrape-photons/un-tournesol/</link>
      <pubDate>Wed, 18 Mar 2009 08:23:59 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/un-tournesol/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-18.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Ciel gris</title>
      <link>https://jmanteau.fr/images/attrape-photons/ciel-gris/</link>
      <pubDate>Tue, 17 Mar 2009 02:20:54 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/ciel-gris/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-16.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rangée de Lavande</title>
      <link>https://jmanteau.fr/images/attrape-photons/rangee-de-lavande/</link>
      <pubDate>Sat, 14 Mar 2009 12:55:38 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/rangee-de-lavande/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-14.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>La barrière</title>
      <link>https://jmanteau.fr/images/attrape-photons/la-barriere/</link>
      <pubDate>Fri, 13 Mar 2009 06:11:06 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/la-barriere/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-12.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Différent</title>
      <link>https://jmanteau.fr/images/attrape-photons/different/</link>
      <pubDate>Tue, 10 Mar 2009 15:34:29 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/different/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-10.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dark clouds &amp; a blue sky</title>
      <link>https://jmanteau.fr/images/attrape-photons/dark-clouds-a-blue-sky/</link>
      <pubDate>Mon, 09 Mar 2009 09:19:09 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/dark-clouds-a-blue-sky/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-08.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Les amoureux de la Garonne</title>
      <link>https://jmanteau.fr/images/attrape-photons/les-amoureux-de-la-garonne/</link>
      <pubDate>Fri, 06 Mar 2009 19:29:04 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/les-amoureux-de-la-garonne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-06.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Soleil couchant et ciel rougeoyant</title>
      <link>https://jmanteau.fr/images/attrape-photons/soleil-couchant-et-ciel-rougeoyant/</link>
      <pubDate>Wed, 04 Mar 2009 06:57:29 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/soleil-couchant-et-ciel-rougeoyant/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-04.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le Chateau d’Alleuze</title>
      <link>https://jmanteau.fr/images/attrape-photons/le-chateau-dalleuze/</link>
      <pubDate>Mon, 02 Mar 2009 20:32:25 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/le-chateau-dalleuze/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-03-02.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wallpapers #2</title>
      <link>https://jmanteau.fr/images/wallpapers/wallpapers-2/</link>
      <pubDate>Thu, 26 Feb 2009 22:09:37 +0000</pubDate>
      <guid>https://jmanteau.fr/images/wallpapers/wallpapers-2/</guid>
      <description>&lt;p&gt;Une petite sélection de wallpapers, cette fois-ci plus orientées manga. Pour en profitez, clic droit et « enregistrer sous » !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Spindump, Mac OS X et les crashs</title>
      <link>https://jmanteau.fr/informatique/apple/spindump-mac-os-x-et-les-crashs/</link>
      <pubDate>Tue, 24 Feb 2009 21:02:26 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/apple/spindump-mac-os-x-et-les-crashs/</guid>
      <description>&lt;p&gt;Malheureusement il arrive que des applications plantent même sous Mac OS X…&lt;/p&gt;&#xA;&lt;p&gt;Pour ma part cela arrive lorsque je laisse ouvert Firefox plus de 24h avec Netvibes ouvert (mais cela doit marcher avec toute application web 2.0 type facebook, deezer, etc … bien lourde et qui laisse une boucle javascript faire de l’allocation ou autre …) et au fur et à mesure il ralentit jusqu’à devenir ingérable. La solution c’est la fermeture ! Mais au moment de l’achever, apparait un « petit » processus : spindump.&lt;/p&gt;</description>
    </item>
    <item>
      <title>La loi Hadopi</title>
      <link>https://jmanteau.fr/informatique/la-loi-hadopi/</link>
      <pubDate>Sat, 21 Feb 2009 21:24:11 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/la-loi-hadopi/</guid>
      <description>&lt;p&gt;Voici une vidéo sur &lt;a href=&#34;http://fr.wikipedia.org/wiki/Loi_Hadopi&#34;&gt;la loi Hadopi&lt;/a&gt;. Cette vidéo explique de façon claire les enjeux de Hadopi.&lt;/p&gt;&#xA;&lt;p&gt;Pour ma part je suis d’accord en grande partie avec cette vidéo, je peux vous assurez que le piratage d’un wifi est chose aisée (il m’a suffit de faire une petite étude statistique à la volée : lors d’une ballade en voiture sur un campus, sur 120 point wifi captés j’en ai repéré 30 en WEP ie pénétrables facilement). Ainsi un particulier pourra se retrouver bloqué et présumé coupable et en aucun cas se justifier.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Coquelicot(s)</title>
      <link>https://jmanteau.fr/images/attrape-photons/coquelicots/</link>
      <pubDate>Wed, 21 Jan 2009 21:41:47 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/coquelicots/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-21.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>La mer … bleue</title>
      <link>https://jmanteau.fr/images/attrape-photons/la-mer-bleue/</link>
      <pubDate>Mon, 19 Jan 2009 08:27:03 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/la-mer-bleue/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-19.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Les pains et le marché</title>
      <link>https://jmanteau.fr/images/attrape-photons/les-pains-et-le-marche-2/</link>
      <pubDate>Sun, 18 Jan 2009 01:08:45 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/les-pains-et-le-marche-2/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-17.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>L’enfer</title>
      <link>https://jmanteau.fr/images/attrape-photons/lenfer-2/</link>
      <pubDate>Thu, 15 Jan 2009 11:29:42 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lenfer-2/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-15.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>B &amp; B &amp; W</title>
      <link>https://jmanteau.fr/images/attrape-photons/b-b-w/</link>
      <pubDate>Wed, 14 Jan 2009 04:56:39 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/b-b-w/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-13.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>L’envol</title>
      <link>https://jmanteau.fr/images/attrape-photons/lenvol/</link>
      <pubDate>Sun, 11 Jan 2009 13:51:07 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lenvol/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-11.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Les boeufs</title>
      <link>https://jmanteau.fr/images/attrape-photons/les-boeufs/</link>
      <pubDate>Sat, 10 Jan 2009 07:27:30 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/les-boeufs/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-09.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Reflet de soleil</title>
      <link>https://jmanteau.fr/images/attrape-photons/reflet-de-soleil/</link>
      <pubDate>Wed, 07 Jan 2009 16:37:15 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/reflet-de-soleil/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2009-01-07.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Eglise à Saint-Flour</title>
      <link>https://jmanteau.fr/images/attrape-photons/eglise-a-saint-flour/</link>
      <pubDate>Tue, 06 Jan 2009 10:23:47 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/eglise-a-saint-flour/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-12-01.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>50 thèmes Gnome pour personnaliser votre bureau</title>
      <link>https://jmanteau.fr/informatique/linux/50-themes-gnome-pour-personnaliser-votre-bureau/</link>
      <pubDate>Wed, 31 Dec 2008 17:21:40 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/50-themes-gnome-pour-personnaliser-votre-bureau/</guid>
      <description>&lt;p&gt;En ces périodes de fêtes il est temps de changer la décoration ! Je vous propose pour cela une sélection intéressante et bien faite de 50 thèmes Gnome. Cette sélection s’adresse donc aux Linuxiens muni d’un bureau Gnome. Non seulement l’auteur nous propose une sélection superbe mais en plus il explique comment les installer pour les débutants !&lt;/p&gt;&#xA;&lt;p&gt;La sélection c’est &lt;a href=&#34;http://www.techiesouls.com/2008/11/27/collection-of-50-best-looking-linux-gnomeubuntu-themes-to-download/&#34;&gt;par là&lt;/a&gt; !&lt;/p&gt;&#xA;&lt;p&gt;Ah et puis avec quelques heures d’avances : Bonne année 2008 2009 !!!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le futur des télécoms</title>
      <link>https://jmanteau.fr/informatique/bazar/le-futur-des-telecoms/</link>
      <pubDate>Tue, 09 Dec 2008 20:22:18 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/bazar/le-futur-des-telecoms/</guid>
      <description>&lt;p&gt;L’ARCEP (L’Autorité de régulation des communications électroniques et des postes) est l’agence chargée de réguler le secteur des télécommunications en France (ainsi que le secteur postal).&lt;/p&gt;&#xA;&lt;p&gt;Elle publie dans sa lettre (&lt;a href=&#34;http://www.arcep.fr/uploads/tx_gspublication/lettre64.pdf&#34;&gt;disponible ici&lt;/a&gt;) un intéressant dossier sur le futur des télécommunications. Elle présente les tendances et les évolutions prévisibles mais laisse également la parole à une vingtaine de personnalités qui dresse un futur des télécoms tel qu’il pourrait l’être en 2020.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Shrink</title>
      <link>https://jmanteau.fr/inutile/shrink/</link>
      <pubDate>Mon, 08 Dec 2008 06:00:28 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/shrink/</guid>
      <description>&lt;p&gt;Comme il n’y a pas de raison que je sois le seul à perdre mon temps, je vous fais partager ce petit jeu flash adictif !&lt;/p&gt;&#xA;&lt;p&gt;Le principe est très simple : réduire suffisamment la zone en rapprochant les parois dirigées avec les touches fléchées. Une fois suffisamment réduite, la zone s’illumine en rouge et espace permet de passer au niveau suivant.&lt;/p&gt;&#xA;&lt;p&gt;Bonne partie !&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://armorgames.com/play/2390/shrink&#34;&gt;Jouer à shrink&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>A backdoor in the firmware</title>
      <link>https://jmanteau.fr/informatique/securite/a-backdoor-in-the-firmware/</link>
      <pubDate>Sat, 06 Dec 2008 10:04:50 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/a-backdoor-in-the-firmware/</guid>
      <description>&lt;p&gt;Je relaie cet excellent article du blog &lt;a href=&#34;http://www.blogs.orange-business.com/&#34;&gt;Sécurité, Réseaux et SI d’Orange&lt;/a&gt; qui fait froid dans le dos : &lt;a href=&#34;http://www.blogs.orange-business.com/securite/2008/12/a-backdoor-in-t.html&#34;&gt;A backdoor in the firmware&lt;/a&gt; .&lt;/p&gt;&#xA;&lt;p&gt;Cet article explique la possibilité qu’un attaquant aurait en mettant à jour le firmware de la carte réseau de détourner la machine. L’action se passant quasiment au niveau physique elle est indétectable. Une fois la carte infectée, l’attaquant peut lire et interagir (au prix de manœuvres succinctement expliquées dans l’article) avec le système, mots de passe, emails et infos confidentielles seraient donc « en libre-service ». L’article vous en dira plus là-dessus car il est bien écrit.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Projets</title>
      <link>https://jmanteau.fr/divers/projets/</link>
      <pubDate>Wed, 03 Dec 2008 12:59:47 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/projets/</guid>
      <description>&lt;p&gt;Depuis le temps que je devais le faire, c’est fait. J’ai mis en ligne les rapports et les sources d’un certain nombre de projets que j’ai fait à l’N7. Ils sont disponibles dans la partie CV mais je vais les récapituler là :&lt;/p&gt;&#xA;&lt;p&gt;C : simulation d’un commutateur réseau (2 mois) Rapport Sources&lt;/p&gt;&#xA;&lt;p&gt;Java : un émulateur de réseau mobile adhoc (MANET) sur lequel sera utilisé le protocole DSR avec interface graphique (2 mois) Rapport Sources&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sélection de mes extensions Firefox</title>
      <link>https://jmanteau.fr/informatique/web/selection-de-mes-extensions-firefox/</link>
      <pubDate>Sat, 29 Nov 2008 17:17:19 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/selection-de-mes-extensions-firefox/</guid>
      <description>&lt;p&gt;Mon profil Firefox que je traine depuis un bon moment me pose un petit problême : chaque fois que je sauvegarde un favori il disparait au redémarrage suivante. j’ai regardé du coté des droits mais tout est en ordre. Donc j’en profite pour créer un nouveau profile. &lt;a href=&#34;http://kb.mozillazine.org/Profile_Manager&#34;&gt;Cet article&lt;/a&gt; vous indiquera comment créer et gérer plusieurs profils et leurs emplacements.&lt;/p&gt;&#xA;&lt;p&gt;Pour faire la transition j’ai utilisé Foxmarks qui synchronise mes mots de passe enregistrés mais auss mes favoris. Reste les extensions. Je dresse donc ici la liste des extensions Firefox qui me sont utiles :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Multi-moi</title>
      <link>https://jmanteau.fr/images/attrape-photons/multi-moi/</link>
      <pubDate>Fri, 28 Nov 2008 19:57:09 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/multi-moi/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-28.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>L’anneau</title>
      <link>https://jmanteau.fr/images/attrape-photons/lanneau/</link>
      <pubDate>Thu, 27 Nov 2008 13:26:38 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lanneau/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-26.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Ordures</title>
      <link>https://jmanteau.fr/images/attrape-photons/ordures/</link>
      <pubDate>Mon, 24 Nov 2008 23:52:45 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/ordures/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-24.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>L’avion, l’église et la lune</title>
      <link>https://jmanteau.fr/images/attrape-photons/lavion-leglise-et-la-lune/</link>
      <pubDate>Sat, 22 Nov 2008 11:13:54 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lavion-leglise-et-la-lune/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-22.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lever de Lune</title>
      <link>https://jmanteau.fr/images/attrape-photons/lever-de-lune/</link>
      <pubDate>Fri, 21 Nov 2008 03:18:57 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lever-de-lune/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-20.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Fleur de chardon</title>
      <link>https://jmanteau.fr/images/attrape-photons/fleur-de-chardon/</link>
      <pubDate>Tue, 18 Nov 2008 13:41:12 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/fleur-de-chardon/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-18.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Apparition</title>
      <link>https://jmanteau.fr/images/attrape-photons/apparition/</link>
      <pubDate>Mon, 17 Nov 2008 07:34:56 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/apparition/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-16.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Burn-E</title>
      <link>https://jmanteau.fr/inutile/burn-e/</link>
      <pubDate>Sun, 16 Nov 2008 20:50:59 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/burn-e/</guid>
      <description>&lt;p&gt;Vous avez aimé Wall-E ? Et bien dans le DVD de Wall-E sera inclut un court-métrage de Pixar : Burn-E.&lt;/p&gt;&#xA;&lt;p&gt;Burn-E est un petit robot de réparation sur l’Axiom (le gros vaisseau) qui en voulant changer une ampoule se heurtera à de multiples péripéties en croisement avec celle de Eve et Wall-E.&lt;/p&gt;&#xA;&lt;p&gt;Le voici:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vignes à l’automne</title>
      <link>https://jmanteau.fr/images/attrape-photons/vignes-a-lautomne/</link>
      <pubDate>Fri, 14 Nov 2008 18:54:34 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vignes-a-lautomne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-14.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Firefox 3.1 et MacBook Pro Unibody</title>
      <link>https://jmanteau.fr/informatique/apple/firefox-31-et-macbook-pro-unibody/</link>
      <pubDate>Wed, 12 Nov 2008 19:59:47 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/apple/firefox-31-et-macbook-pro-unibody/</guid>
      <description>&lt;p&gt;Ca y est j’ai mon Mac. Content. Très bonne machine mais j’y reviendrai plus tard.&lt;/p&gt;&#xA;&lt;p&gt;Un des atouts de cette nouvelle génération est le trackpad multitouch. Pouvoir zoomer en écartant les doigts, tourner une photo deviennent des gestes très naturels très très vite.&lt;/p&gt;&#xA;&lt;p&gt;Safari support parfaitement ces gestes notamment pour aggrandir la police d’une page web.&lt;/p&gt;&#xA;&lt;p&gt;Et Firefox ? La 3.0 ne sait rien faire de tout cela. Cependant &lt;a href=&#34;http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/firefox-3.1b2pre.en-US.mac.dmg&#34;&gt;Firefox 3.1 en beta avec Minefield&lt;/a&gt; corrige tout cela.&lt;/p&gt;</description>
    </item>
    <item>
      <title>La fille et le dauphin</title>
      <link>https://jmanteau.fr/images/attrape-photons/la-fille-et-le-dauphin/</link>
      <pubDate>Wed, 12 Nov 2008 06:32:53 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/la-fille-et-le-dauphin/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-12.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le joueur de flûte</title>
      <link>https://jmanteau.fr/images/attrape-photons/le-joueur-de-flute/</link>
      <pubDate>Sat, 08 Nov 2008 08:53:40 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/le-joueur-de-flute/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-08.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Yellow New Beetle</title>
      <link>https://jmanteau.fr/images/attrape-photons/yellow-new-beetle/</link>
      <pubDate>Fri, 07 Nov 2008 02:35:37 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/yellow-new-beetle/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-06.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Flare</title>
      <link>https://jmanteau.fr/images/attrape-photons/flare/</link>
      <pubDate>Tue, 04 Nov 2008 11:52:23 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/flare/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-04.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rose dans la ville II</title>
      <link>https://jmanteau.fr/images/attrape-photons/rose-dans-la-ville-ii/</link>
      <pubDate>Mon, 03 Nov 2008 05:14:10 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/rose-dans-la-ville-ii/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-11-02.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rose dans la ville I</title>
      <link>https://jmanteau.fr/images/attrape-photons/rose-dans-la-ville-i/</link>
      <pubDate>Fri, 31 Oct 2008 13:17:09 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/rose-dans-la-ville-i/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-31.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Champipi rouge</title>
      <link>https://jmanteau.fr/images/attrape-photons/champipi-rouge/</link>
      <pubDate>Thu, 30 Oct 2008 05:29:40 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/champipi-rouge/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-29.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Htop</title>
      <link>https://jmanteau.fr/informatique/linux/htop/</link>
      <pubDate>Wed, 29 Oct 2008 15:10:15 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/htop/</guid>
      <description>&lt;p&gt;Avec cet article je commence une série de petits articles sur les utilitaires les plus indispensables du monde Unix pour moi. Vous pouvez retrouvez l’ensemble de ces articles avec le tag utilitaires.&lt;/p&gt;&#xA;&lt;p&gt;Htop est un remplaçant à top. Top et Htop sont des moniteurs systèmes c’est à dire qu’ils visualisent l’ensemble des processus en cours ainsi que les statistiques associées ( CPU, mémoire, PID …).&lt;/p&gt;&#xA;&lt;p&gt;La grande force de Htop est son interface :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Torrent de montagne</title>
      <link>https://jmanteau.fr/images/attrape-photons/torrent-de-montagne/</link>
      <pubDate>Mon, 27 Oct 2008 15:08:25 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/torrent-de-montagne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-27.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vieille souche</title>
      <link>https://jmanteau.fr/images/attrape-photons/vieille-souche/</link>
      <pubDate>Sun, 26 Oct 2008 07:14:56 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vieille-souche/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-25.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Le roi de la montagne</title>
      <link>https://jmanteau.fr/images/attrape-photons/le-roi-de-la-montagne/</link>
      <pubDate>Wed, 22 Oct 2008 14:56:24 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/le-roi-de-la-montagne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-22.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Étang de Balbonne</title>
      <link>https://jmanteau.fr/images/attrape-photons/etang-de-balbonne/</link>
      <pubDate>Tue, 21 Oct 2008 09:50:11 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/etang-de-balbonne/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-20.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stéréogrammes</title>
      <link>https://jmanteau.fr/inutile/stereogrammes/</link>
      <pubDate>Sun, 19 Oct 2008 16:11:48 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/stereogrammes/</guid>
      <description>&lt;p&gt;Je suis retombé aujourd’hui sur ces images qui m’ont toujours intrigués : les stéréogrammes !&lt;/p&gt;&#xA;&lt;p&gt;Pour les visualiser:&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Technique parallèle&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Facile, sans entraînement, avec un instrument composé de deux lentilles convergentes, ou de prismes, ou de quatre miroirs. Ces instruments se trouvent facilement dans le commerce sur Internet.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Il est possible de voir « comme il faut » sans instrument avec un peu d’entraînement en regardant dans le vague, très loin derrière l’image (pour que les yeux soient le moins convergents possible et ainsi s’approcher du parallélisme). Pour débuter, le plus simple est de s’approcher très près de l’image sans chercher à vouloir la regarder, puis de s’en éloigner progressivement ; arrivé à « bonne » distance l’image se fige toute seule et apparaît « comme il faut ».&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lune de jour</title>
      <link>https://jmanteau.fr/images/attrape-photons/lune-de-jour/</link>
      <pubDate>Sat, 18 Oct 2008 22:32:02 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/lune-de-jour/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-18.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Brume dans une vallée des Pyrénées</title>
      <link>https://jmanteau.fr/images/attrape-photons/brume-dans-une-vallee-des-pyrenees/</link>
      <pubDate>Thu, 16 Oct 2008 19:45:51 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/brume-dans-une-vallee-des-pyrenees/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-16.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour la photo en plus grand, cliquez sur l’image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Depant ou comment vérifier si les mots de passe par défaut sont utilisés</title>
      <link>https://jmanteau.fr/informatique/securite/depant-ou-comment-verifier-si-les-mots-de-passe-par-defaut-sont-utilises/</link>
      <pubDate>Wed, 15 Oct 2008 12:22:48 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/securite/depant-ou-comment-verifier-si-les-mots-de-passe-par-defaut-sont-utilises/</guid>
      <description>&lt;p&gt;Un risque élevé en sécurité est l’utilisation des mots de passe par défaut ou faible: clé WEP généré à partir du SSID, mot de passe admin toujours d’usine ou non initialisé, mot de passe type « toto »… mais détecter ce type de faille peut-être long et rébarbatif.&lt;/p&gt;&#xA;&lt;p&gt;Midnight Research Labs propose le logiciel Depant &lt;a href=&#34;http://midnightresearch.com/local/packages/depant/depant-0.1a.tgz&#34;&gt;(DE)fault (PA)ssword (N)etwork (T)ool)&lt;/a&gt; afin d’automatiser tout cela.&lt;/p&gt;&#xA;&lt;p&gt;Depant effectue un scan &lt;a href=&#34;http://nmap.org/download.html&#34;&gt;Nmap&lt;/a&gt; afin de déterminer les équipements sur le réseau et les services tournant dessus puis grâce à l’aide d’&lt;a href=&#34;http://freeworld.thc.org/thc-hydra/&#34;&gt;Hydra&lt;/a&gt; et &lt;a href=&#34;http://www.phenoelit-us.org/dpl/dpl.html&#34;&gt;une liste de passwords génériques connus&lt;/a&gt; tente une connexion via la méthode de BruteForce par dictionnaire (essai de tout les mots de passes). On peut utiliser des listes existantes mais également fournir la sienne. De cette manière vous scannez puis testez l’ensemble de vos équipements de façon automatique.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Blé &amp; Ciel</title>
      <link>https://jmanteau.fr/images/attrape-photons/ble-ciel/</link>
      <pubDate>Mon, 13 Oct 2008 03:48:39 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/ble-ciel/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-12.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;La photo en plus grand c’est ici!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Soleil rasant</title>
      <link>https://jmanteau.fr/images/attrape-photons/soleil-rasant/</link>
      <pubDate>Fri, 10 Oct 2008 16:30:46 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/soleil-rasant/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-10.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;La photo en plus grand c’est ici!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vieille Porte</title>
      <link>https://jmanteau.fr/images/attrape-photons/vieille-porte/</link>
      <pubDate>Thu, 09 Oct 2008 11:19:48 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/vieille-porte/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-08.html&#34;&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.aminus3.com/image/2008-10-08.html&#34;&gt;La Photo en plus grand c’est ici!&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Attrape-Photons</title>
      <link>https://jmanteau.fr/images/attrape-photons/attrape-photons/</link>
      <pubDate>Thu, 09 Oct 2008 11:18:17 +0000</pubDate>
      <guid>https://jmanteau.fr/images/attrape-photons/attrape-photons/</guid>
      <description>&lt;p&gt;Attrape-Photons est mon photoblog sur Aminus. Un photoblog consiste à publier une photo par jour (dans mon cas plus tous les deux jours).  On peut suivre la publication des photos bien sur le site mais par mesure de commidité je vais agréger aussi les photos sur ce site.&lt;/p&gt;&#xA;&lt;p&gt;D’un point de vue technique cela signifie que je récupère le flux RSS généré par Aminus et un plug-in WordPress Word-o-Matic récupère ce flux pour le transformer en article et le poster.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Marathon Photo de Montauban 2008</title>
      <link>https://jmanteau.fr/images/photos/marathon-photo-de-montauban-2008/</link>
      <pubDate>Sun, 05 Oct 2008 09:18:53 +0000</pubDate>
      <guid>https://jmanteau.fr/images/photos/marathon-photo-de-montauban-2008/</guid>
      <description>&lt;p&gt;Hier j’ai participé au Marathon Photo de Montauban et , ô joie ô bonheur, j’ai eu le plaisir de remporter celui-ci!&lt;/p&gt;&#xA;&lt;p&gt;La photo gagnante pour le thème « Le rose dans la ville » est celle-ci :&lt;/p&gt;&#xA;&lt;p&gt;[singlepic=136,400,300,,]&lt;/p&gt;&#xA;&lt;p&gt;Je suis donc très content de ma participation d’autant plus que cette journée a été très agréable et l’occasion de faire une sortie photo avec &lt;a href=&#34;http://steakhachai.free.fr/&#34;&gt;Luc&lt;/a&gt; et &lt;a href=&#34;http://tigre-bleu.n7mm.org/&#34;&gt;Gros Cheveux&lt;/a&gt;. D’ailleurs on a bien marché et j’ai eu l’occasion d’essayer leurs jolis objectifs … (17-40L, 70-200 F4 L, 24-70 L F2.8 …).&lt;/p&gt;</description>
    </item>
    <item>
      <title>La Carte d’Internet</title>
      <link>https://jmanteau.fr/informatique/planet-libre/la-carte-dinternet/</link>
      <pubDate>Wed, 01 Oct 2008 20:45:20 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/planet-libre/la-carte-dinternet/</guid>
      <description>&lt;p&gt;Etant abonné au flux de xkcd j’avais lu et adoré cette représentation de l’espace IPv4 de l’Internet :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://jmanteau.fr/uploads/2008/10/map_of_the_internet1.jpg&#34;&gt;&lt;/a&gt; &lt;img alt=&#34;map_of_the_internet&#34; src=&#34;https://jmanteau.fr/uploads/2008/10/map_of_the_internet.jpg&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;Et après quelques recherches on voit que l’on a fait mieux et que la cartographie du web peut revetir différents aspects :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;IPv4 Map : une carte d’Internet où l’on peut zoomer et voir pour les réseaux et les sous-réseaux leur propriétaire tel que donnée par le whois. En bonus une image représentant le même type de carte mais zoomée directement (5120px × 4096px) est disponible ici.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Soupe aux potimarrons et aux pommes</title>
      <link>https://jmanteau.fr/recettes/soupe-aux-potimarrons-et-aux-pommes/</link>
      <pubDate>Mon, 29 Sep 2008 19:34:05 +0000</pubDate>
      <guid>https://jmanteau.fr/recettes/soupe-aux-potimarrons-et-aux-pommes/</guid>
      <description>&lt;pre&gt;&lt;code&gt;Potimarron&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;strong&gt;Préparation : 20min&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Cuisson : 20 min&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;un potimarron (environ 800g)&lt;/li&gt;&#xA;&lt;li&gt;une grosse pomme (ou deux petites…)&lt;/li&gt;&#xA;&lt;li&gt;deux branche de céléri&lt;/li&gt;&#xA;&lt;li&gt;un oignon&lt;/li&gt;&#xA;&lt;li&gt;bouillon de légumes ou de volailles selon vos gouts : perso j’utilise le volaille pour cette recette.&lt;/li&gt;&#xA;&lt;li&gt;50 ml de crême fraiche liquide mais du lait fera aussi bien l’affaire&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Et n’hésitez pas à mettre des pomme en plus si votre potimarron est plus conséquent.&lt;/p&gt;</description>
    </item>
    <item>
      <title>OptiPNG ou l’optimisation des fichiers PNG</title>
      <link>https://jmanteau.fr/images/optipng-ou-loptimisation-des-fichiers-png/</link>
      <pubDate>Sat, 27 Sep 2008 16:08:39 +0000</pubDate>
      <guid>https://jmanteau.fr/images/optipng-ou-loptimisation-des-fichiers-png/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;Le Portable Network Graphics (&lt;strong&gt;PNG&lt;/strong&gt;) est un &lt;a href=&#34;http://fr.wikipedia.org/wiki/Format_de_fichier&#34; title=&#34;Format de fichier&#34;&gt;format&lt;/a&gt;{.mw-redirect} &lt;a href=&#34;http://fr.wikipedia.org/wiki/Format_ouvert&#34; title=&#34;Format ouvert&#34;&gt;ouvert&lt;/a&gt; d’&lt;a href=&#34;http://fr.wikipedia.org/wiki/Image_num%C3%A9rique&#34; title=&#34;Image numérique&#34;&gt;images numériques&lt;/a&gt;, qui a été créé pour remplacer le format &lt;a href=&#34;http://fr.wikipedia.org/wiki/Graphics_Interchange_Format&#34; title=&#34;Graphics Interchange Format&#34;&gt;GIF&lt;/a&gt;, à l’époque &lt;a href=&#34;http://fr.wikipedia.org/wiki/Logiciel_propri%C3%A9taire&#34; title=&#34;Logiciel propriétaire&#34;&gt;propriétaire&lt;/a&gt; et dont la compression était soumise à un &lt;a href=&#34;http://fr.wikipedia.org/wiki/Brevet_logiciel&#34; title=&#34;Brevet logiciel&#34;&gt;brevet&lt;/a&gt;{.mw-redirect}. Le PNG est un format &lt;em&gt;non destructeur&lt;/em&gt; spécialement adapté pour publier des images simples comprenant des aplats de couleurs.&lt;/p&gt;&#xA;&lt;p&gt;Wikipedia&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Le fichier PNG est particulièrement utile pour les applications web en remplacement du GIF car de meilleur qualité notamment sur les dégradés( à part IE qui ne le gère pas avec la transparence : si vous utilisez IE6 jetez un coup d’oeil à ce site). &lt;a href=&#34;http://optipng.sourceforge.net/&#34;&gt;OptiPNG&lt;/a&gt; permet facilement d’optimiser la taille d’un fichier PNG sans perte de qualité.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Routage d’un autre niveau …</title>
      <link>https://jmanteau.fr/informatique/web/routage-dun-autre-niveau/</link>
      <pubDate>Thu, 18 Sep 2008 16:25:10 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/web/routage-dun-autre-niveau/</guid>
      <description>&lt;p&gt;Voici &lt;a href=&#34;https://www.youtube.com/watch?v=LLkFwXiK1vQ&#34;&gt;une petite vidéo intéressante&lt;/a&gt; qui décrit les équipements réseaux dans le datacenter d’OVH à Roubaix. Cela vaut le coup d’oeil ! Et avec un regard technique c’est encore plus intéressant, je serais intéressé d’avoir encore plus de détails sur l’architecture mais ils ne sont peut-être pas public .&lt;/p&gt;&#xA;&lt;p&gt;PS: et au passage … en plus c’est OVH mon hébergeur !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kawaii Totoro !</title>
      <link>https://jmanteau.fr/inutile/kawaii-le-totoro/</link>
      <pubDate>Wed, 17 Sep 2008 06:00:26 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/kawaii-le-totoro/</guid>
      <description>&lt;p&gt;&lt;img alt=&#34;totoro&#34; src=&#34;https://jmanteau.fr/uploads/2008/09/totoro.gif&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;L’animation  se suffit en elle-même. Pour ceux qui ne l’ont pas vu, filez le regardez tout de suite ! &lt;/p&gt;</description>
    </item>
    <item>
      <title>WPA, Windows, HP et !</title>
      <link>https://jmanteau.fr/informatique/wpa-windows-hp-et/</link>
      <pubDate>Tue, 16 Sep 2008 06:00:00 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/wpa-windows-hp-et/</guid>
      <description>&lt;p&gt;Un petit billet sur ma saga de l’aprem …&lt;/p&gt;&#xA;&lt;p&gt;J’ai installé une imprimante HP C4380 (qui soit dit en passant marche du feu de dieu sous Linux en scan, impression et tout ça par Wifi ! Merci Hplib !) mais avant j’ai eu quelque problèmes à la connecter au réseau …&lt;/p&gt;&#xA;&lt;p&gt;Ma clé WPA que j’avais changé récemment comportait un ! à la fin de celle ci. Car je rappelle qu’on bon mot de passe comporte des lettres majuscules, minuscules, des chiffres et des caractères spéciaux. Bref et ce ! bloquait le programme d’installation HP qui refusait de passer à l’étape suivante à cause de lui avec un message d’erreur super explicite  » Erreur lors de l’enregistrement des paramètres sur le périphérique » … J’ai donc laissé que des caractères alphanumériques dans ma clé et cela a fonctionné .&lt;/p&gt;</description>
    </item>
    <item>
      <title>En travaux #3</title>
      <link>https://jmanteau.fr/divers/en-travaux-3/</link>
      <pubDate>Mon, 15 Sep 2008 12:35:16 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/en-travaux-3/</guid>
      <description>&lt;p&gt;Et voilà. Le site est présent dans son nouveau design.&lt;/p&gt;&#xA;&lt;p&gt;Cependant il reste encore du boulot :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;régler le problème de la jointure du footer (regardez en bas ça fait pas très propre au niveau du raccordement du bois)&lt;/li&gt;&#xA;&lt;li&gt;changer les textes pour les commentaires et dans les menus latéraux de manière plus « propre »&lt;/li&gt;&#xA;&lt;li&gt;réorganiser le menu latéral.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Et de manière plus générale :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;finir d’ajouter du contenu notamment au niveau photos&lt;/li&gt;&#xA;&lt;li&gt;mettre à jour le CV et le mettre en version française&lt;/li&gt;&#xA;&lt;li&gt;et a propos de photo réintégrer le plugin de vision des photos panoramiques.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Voilà pour la Todo list et les améliorations à venir.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Intel Graphics Media Accelerator 900-950 et Linux</title>
      <link>https://jmanteau.fr/informatique/intel-graphics-media-accelerator-900-950-et-linux/</link>
      <pubDate>Sun, 14 Sep 2008 18:19:57 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/intel-graphics-media-accelerator-900-950-et-linux/</guid>
      <description>&lt;p&gt;J’ai eu à réinstaller un Dell Inspiron 1300 et suite à ça je me suis aperçu que la résolution faisait des siennes …&lt;/p&gt;&#xA;&lt;p&gt;Le problème vient du driver d’Intel. La solution à ce problème vient de 915resolution qui résoud tout nos ennuis.&lt;/p&gt;&#xA;&lt;p&gt;Pour l’activer :&lt;/p&gt;&#xA;&lt;p&gt;[bash]# yum install 915 resolution[/bash]&lt;/p&gt;&#xA;&lt;p&gt;Ensuite pour la configuration en résolution 1280×800 :&lt;/p&gt;&#xA;&lt;p&gt;[bash]# echo RESOLUTION= »3c 1280 800″ &amp;gt; /etc/sysconfig/915resolution[/bash]&lt;/p&gt;&#xA;&lt;p&gt;Pour finir l’activation à chaque démarrage passe par :&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sale bête = sale blague</title>
      <link>https://jmanteau.fr/inutile/sale-bete-sale-blague/</link>
      <pubDate>Fri, 12 Sep 2008 14:16:54 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/sale-bete-sale-blague/</guid>
      <description>&lt;p&gt;Attention amis arachnophobes arretez la lecture tout de suite. Je vous aurais prévenu.&lt;/p&gt;&#xA;&lt;p&gt;.&lt;/p&gt;&#xA;&lt;p&gt;.&lt;/p&gt;&#xA;&lt;p&gt;.&lt;/p&gt;&#xA;&lt;p&gt;C’est bon ? Maintenant qu’il reste que les durs allez dans l’antre de la bête : ici&lt;/p&gt;&#xA;&lt;p&gt;Pour la nourrir il faut indiquer l’endroit avec le curseur puis la touche espace.&lt;/p&gt;&#xA;&lt;p&gt;Une très bonne idée de blague :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Installer R-Kiosk pour Firefox qui le met en plein écran et enlève toutes les barres de navigations, menu, adresse, etc …&lt;/li&gt;&#xA;&lt;li&gt;Mettre la page précédente en page d’accueil.&lt;/li&gt;&#xA;&lt;li&gt;Choisissez votre victime (allergique aux araignées de préférence).&lt;/li&gt;&#xA;&lt;li&gt;Savourez.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Je sais je suis génial (comment ça sadique ? qui a dit ça).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guides Linux</title>
      <link>https://jmanteau.fr/informatique/linux/guides-linux/</link>
      <pubDate>Mon, 08 Sep 2008 11:03:59 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/guides-linux/</guid>
      <description>&lt;p&gt;Un petit article avec des liens sur différents guides linux utiles.&lt;/p&gt;&#xA;&lt;p&gt;Pour Centos 5 / Red Hat Enterprise Linux 5 :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Le guide de la NSA décrivant de façon complète la configuration et la protection du système. On doit à la NSA également le sytème de sécurisation kernel SE Linux et dans cet ouvrage elle décrit les différentes façon de sécuriser son système: des configurations générales à la description des différents services à activer ou désactiver. Accessible &lt;a href=&#34;http://jmanteau.fr/uploads/2008/09/rhel5-guide-i7311.pdf&#34;&gt;ici&lt;/a&gt; en téléchargement direct ou là sur le site de la NSA.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Pour Debian :&lt;/p&gt;</description>
    </item>
    <item>
      <title>10h34</title>
      <link>https://jmanteau.fr/inutile/10h34/</link>
      <pubDate>Fri, 29 Aug 2008 11:11:33 +0000</pubDate>
      <guid>https://jmanteau.fr/inutile/10h34/</guid>
      <description>&lt;p&gt;Excellent court métrage ! J’avoue que je suis fan !&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.dailymotion.com/video/x4mgvi&#34;&gt;10h34&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>En travaux</title>
      <link>https://jmanteau.fr/images/graphisme/en-travaux/</link>
      <pubDate>Wed, 27 Aug 2008 13:39:12 +0000</pubDate>
      <guid>https://jmanteau.fr/images/graphisme/en-travaux/</guid>
      <description>&lt;p&gt;Comme vous pouvez le constater le site est en travaux. Cependant cela a changer et d’ici une semaine ou un peu plus il passera dans sa collection d’automne vers :&lt;/p&gt;&#xA;&lt;p&gt;&lt;img alt=&#34;website_ju&#34; src=&#34;https://jmanteau.fr/uploads/2008/08/website_ju.jpg&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;En attendant il faut faire avec l’interface actuel.&lt;/p&gt;&#xA;&lt;p&gt;Et la nouvelle version inclut également des liens qui marche, un menu plus clair, une arborescence plus simple … bref l’objectif est de faciliter la navigation.&lt;/p&gt;&#xA;&lt;p&gt;Le gros problème actuel est IE qui refuse le formatage correct de la page CV alors que ça marche impec sous Firefox. On ne fera aucun commentaires …&lt;/p&gt;</description>
    </item>
    <item>
      <title>Amarok 2 Beta 1</title>
      <link>https://jmanteau.fr/informatique/linux/amarok-2-beta-1/</link>
      <pubDate>Mon, 25 Aug 2008 20:47:15 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/amarok-2-beta-1/</guid>
      <description>&lt;p&gt;Depuis le temps que je le guettait du coin de l’oeil (j’ai même essayer une nightly build) il est enfin sorti le jeune louveteau : Amarok 2 est là !&lt;/p&gt;&#xA;&lt;p&gt;Je pars le tester !&lt;/p&gt;&#xA;&lt;p&gt;Pour les gens sous Fedora 9 le rpm est &lt;a href=&#34;http://kushaldas.in/tmp/amarok-1.90-1.fc9.i386.rpm&#34;&gt;là&lt;/a&gt; .&lt;/p&gt;</description>
    </item>
    <item>
      <title>Photos</title>
      <link>https://jmanteau.fr/photos/</link>
      <pubDate>Sun, 24 Aug 2008 17:11:23 +0000</pubDate>
      <guid>https://jmanteau.fr/photos/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;em&gt;Une photographie, c’est un arrêt du coeur d’une fraction de seconde.&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pierre Movila&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Mes photos se trouvent dans divers endroits :&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Sur Flickr. Flickr est l’endroit le plus souvent à jour.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Sur Aminus, où je tiens mon photoblog Attrape-Photons qui consiste à publier des photos au jour le jour. Elles peuvent ainsi êtres notées et commentées. (RIP: plus mis à jour)&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Des fois comme post sur ce blog avec la &lt;a href=&#34;https://jmanteau.fr/category/photos/&#34;&gt;catégorie Photos&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Projets ENSEEIHT TR</title>
      <link>https://jmanteau.fr/projets-n7/</link>
      <pubDate>Sun, 24 Aug 2008 14:22:48 +0000</pubDate>
      <guid>https://jmanteau.fr/projets-n7/</guid>
      <description>&lt;h1 id=&#34;projets-effectués&#34;&gt;Projets effectués&lt;/h1&gt;&#xA;&lt;p&gt;C : simulation d’un commutateur réseau (2 mois) Rapport Sources&lt;/p&gt;&#xA;&lt;p&gt;Java : un émulateur de réseau mobile adhoc (MANET) sur lequel sera utilisé le protocole DSR avec interface graphique (2 mois) Rapport Sources&lt;/p&gt;&#xA;&lt;p&gt;Pascal : création un programme permettant d’émuler un processeur simple exécutant des routines assembleurs (6 semaines) Rapport Sources&lt;/p&gt;&#xA;&lt;p&gt;C : écriture d’un driver système linux permettant une connexion ethernet via un port parralèle (3 semaines) Source&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lorem ipsum</title>
      <link>https://jmanteau.fr/lorem-ipsum/</link>
      <pubDate>Sun, 24 Aug 2008 13:20:15 +0000</pubDate>
      <guid>https://jmanteau.fr/lorem-ipsum/</guid>
      <description>&lt;p&gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque nulla. Integer convallis, dolor nec pellentesque rhoncus, dolor sem scelerisque turpis, at eleifend ligula dui in tellus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Integer hendrerit, sapien eu aliquet volutpat, lacus sapien pretium sapien, vitae fermentum sem nisi ut ante. Aliquam sed leo. Donec vestibulum bibendum leo. Duis in eros vitae erat viverra vestibulum. Morbi tincidunt libero sit amet pede. Sed tincidunt, quam ac viverra eleifend, leo ligula interdum diam, id varius nunc dui eu nisl. Sed molestie mi quis neque. Phasellus a metus quis purus gravida consectetuer. Phasellus ligula.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Installation de Debian Lenny sur SunBlade 1000</title>
      <link>https://jmanteau.fr/informatique/linux/installation-de-debian-lenny-sur-sunblade-1000/</link>
      <pubDate>Sat, 09 Aug 2008 17:00:52 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/installation-de-debian-lenny-sur-sunblade-1000/</guid>
      <description>&lt;p&gt;La config de la bête:&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;Deux processeurs 64 bits UltraSPARC-III à 750 MHz avec 8 Mo de cache chacun.&#xA;&#xA;&#xA;2 Go de RAM (8 x 256 Mo SDRAM DIMM, référence Sun 501-5401).&#xA;&#xA;&#xA;Deux framebuffers UPA Sun Elite3d-m6 Series 2 (référence Sun 501-5575).&#xA;&#xA;&#xA;Un disque 36.4 Go à 10000 tours/minute FC-AL Seagate série Cheetah 73LP (ST336605FC, référence Sun 390-0070).&#xA;&#xA;&#xA;Un disque 73.4 Go à 10000 tours/minute FC-AL Seagate série Cheetah 73LP (ST373405FC, référence Sun 390-0071).&#xA;&#xA;&#xA;Un lecteur DVD-ROM 10X SCSI StorEdge (référence Sun 390-0025).&#xA;&#xA;&#xA;Un lecteur Smart Card simple face (référence Sun 370-3933).&#xA;&#xA;&#xA;Un clavier Sun Type-6 (connectique USB) en version française (AZERTY).&#xA;&#xA;&#xA;Une sourie 3 boutons (connectique USB).&#xA;&#xA;&#xA;Un module audio avec le codec CS4231 (référence SUN 501-4155)&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;L’install se fait par le réseau, n’ayant pas de lecteur CD-ROM.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Règles Iptables</title>
      <link>https://jmanteau.fr/informatique/linux/regles-iptables/</link>
      <pubDate>Fri, 08 Aug 2008 12:55:37 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/regles-iptables/</guid>
      <description>&lt;p&gt;IPtables (associé à Netfilter) est un des meilleurs firewalls pour Linux, et certainement le plus répandu. Vous pourrez trouver de nombreux scripts de configuration à son sujet. En voici un, à adapter à votre configuration. A tout instant, utilisez la commande iptables -L -v pour lister les règles en place.&lt;/p&gt;&#xA;&lt;p&gt;Celles-ci portent sur 3 chaînes : INPUT (en entrée), FORWARD (dans le cas d’un routage réseau) et OUPUT (en sortie). Les actions à entreprendre sont ACCEPT (accepter le paquet), DROP (le jeter), QUEUE et RETURN.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Compiler un script bash</title>
      <link>https://jmanteau.fr/informatique/linux/compiler-un-script-bash/</link>
      <pubDate>Fri, 08 Aug 2008 09:16:27 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/compiler-un-script-bash/</guid>
      <description>&lt;p&gt;Aussi bizarre que cela puisse paraitre on peut compiler un script bash. Cela peut être particulièrement utile si l’on veut que le script ne soit pas modifé par un utilisateur lambda lors de sa diffusion.&lt;/p&gt;&#xA;&lt;p&gt;Pour cela télécharger &lt;a href=&#34;http://jmanteau.free.fr/util/shc-3.8.6.tar.gz&#34;&gt;Ici&lt;/a&gt; ou sur &lt;a href=&#34;http://www.datsi.fi.upm.es/~frosal/&#34;&gt;le site de l’auteur&lt;/a&gt; ( sur Debian un apt-get install shc marche également)&lt;/p&gt;&#xA;&lt;p&gt;Les instructions se trouve dans l’archive mais tout simplement il faut faire :&lt;/p&gt;&#xA;&lt;p&gt;make : pour compiler le programme&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dynamic MMap ran out of room</title>
      <link>https://jmanteau.fr/informatique/linux/dynamic-mmap-ran-out-of-room/</link>
      <pubDate>Tue, 05 Aug 2008 11:14:57 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/dynamic-mmap-ran-out-of-room/</guid>
      <description>&lt;p&gt;Si toi aussi ton apt-get se rebelle et te renvoie ballader, matte le avec :&lt;/p&gt;&#xA;&lt;p&gt;echo « APT::Cache-Limit « 141943904 »; » &amp;raquo; /etc/apt/apt.conf.d/00configperso&lt;/p&gt;&#xA;&lt;p&gt;En gros tu augmente la mémoire du cache de Apt-get avec ce nombre magique qui résoud tes problèmes . Une recherche google sur l’origine de ce nombre t’expliquera l’ironie de la chose !&lt;/p&gt;</description>
    </item>
    <item>
      <title>Google Hacking</title>
      <link>https://jmanteau.fr/informatique/bazar/google-hacking/</link>
      <pubDate>Tue, 29 Jul 2008 11:53:51 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/bazar/google-hacking/</guid>
      <description>&lt;p&gt;Pour ceux qui ne le save pas Google indexe tout (en fait pas mal de trucs tout du moins: faites une recherche sur « The invisible web » pour en voir les limites). Et donc on peut chercher !&lt;/p&gt;&#xA;&lt;p&gt;Pour chercher plus efficacement voici les liens suivants :&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://johnny.ihackstuff.com/ghdb.php&#34;&gt;The Google Hacking Database&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.googleguide.com/advanced_operators.html&#34;&gt;Google search advanced operators&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Et après une recherche comme: intitle:index.of +”last modified” +”parent directory” +(mp3|wma|ogg) + »Cindy Sanders » -htm -html -php -asp&lt;/p&gt;</description>
    </item>
    <item>
      <title>Quelques commandes de Vi</title>
      <link>https://jmanteau.fr/informatique/linux/quelques-commandes-de-vi/</link>
      <pubDate>Tue, 22 Jul 2008 11:35:48 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/quelques-commandes-de-vi/</guid>
      <description>&lt;p&gt;Dans la lignée du post précédent :&lt;/p&gt;&#xA;&lt;h2 id=&#34;rechercher&#34;&gt;Rechercher&lt;/h2&gt;&#xA;&lt;p&gt;/word&#xA;Recherche “word” de haut en bas&lt;/p&gt;&#xA;&lt;p&gt;?word&#xA;Recherche “word” de bas en haut&lt;/p&gt;&#xA;&lt;p&gt;/jo[ha]n&#xA;Recherche “john” ou “joan”&lt;/p&gt;&#xA;&lt;p&gt;/&amp;lt; the&#xA;Recherche “the”, “theatre” ou “then”&lt;/p&gt;&#xA;&lt;p&gt;/the&amp;gt;&#xA;Recherche “the” ou “breathe”&lt;/p&gt;&#xA;&lt;p&gt;/&amp;lt; the&amp;gt;&#xA;Recherche “the”&lt;/p&gt;&#xA;&lt;p&gt;/&amp;lt; &amp;hellip;.&amp;gt;&#xA;Recherche tous les mots de 4 lettres&lt;/p&gt;&#xA;&lt;p&gt;/fred|joe&#xA;Recherche “fred” ou “joe”&lt;/p&gt;&#xA;&lt;p&gt;/^n{3}&#xA;Trouve 3 lignes vides&lt;/p&gt;&#xA;&lt;p&gt;:bufdo /searchstr/&#xA;Effectue une recherche dans tous les fichiers ouverts&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sed: commandes utiles</title>
      <link>https://jmanteau.fr/informatique/linux/sed-commandes-utiles/</link>
      <pubDate>Tue, 22 Jul 2008 08:21:59 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/sed-commandes-utiles/</guid>
      <description>&lt;p&gt;« Petit » mémento de commandes sed :&lt;/p&gt;&#xA;&lt;p&gt;————————————————————————-&lt;/p&gt;&#xA;&lt;p&gt;SCRIPTS D’UNE LIGNE UTILES POUR SED (ÉDITEUR DÉFILANT UNIX) Dec. 29, 2005&lt;/p&gt;&#xA;&lt;p&gt;Compilé par Éric Pement [at]northpark[dot]edu version 5.5&lt;/p&gt;&#xA;&lt;p&gt;Traduit par Gérard Piette gpiette[at]ncf[dot]ca&lt;/p&gt;&#xA;&lt;p&gt;La version récente de ce fichier (en Anglais) se retrouve ici:&lt;/p&gt;&#xA;&lt;p&gt;Ce fichier aussi disponible dans d’autres langages:&lt;/p&gt;&#xA;&lt;p&gt;Chinois –&lt;/p&gt;&#xA;&lt;p&gt;Czech –&lt;/p&gt;&#xA;&lt;p&gt;Hollandais –&lt;/p&gt;&#xA;&lt;p&gt;Français –&lt;/p&gt;&#xA;&lt;p&gt;Allemand –&lt;/p&gt;&#xA;&lt;p&gt;Portugais –&lt;/p&gt;&#xA;&lt;p&gt;ESPACEMENT DE FICHIER:&lt;/p&gt;&#xA;&lt;p&gt;# espacer en double un fichier&lt;/p&gt;&#xA;&lt;p&gt;sed G&lt;/p&gt;&#xA;&lt;p&gt;# espacer en double un fichier qui a déjà des lignes vides.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Setup sudo in Fedora</title>
      <link>https://jmanteau.fr/informatique/linux/setup-sudo-in-fedora/</link>
      <pubDate>Fri, 20 Jun 2008 08:02:32 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/setup-sudo-in-fedora/</guid>
      <description>&lt;p&gt;Petit memento :&#xA;echo &amp;rsquo;loginname ALL=(ALL) ALL&amp;rsquo; &amp;raquo; /etc/sudoers&lt;/p&gt;&#xA;&lt;p&gt;Where &amp;rsquo;loginname&amp;rsquo; is your user account.&#xA;Use &amp;lsquo;ALL=(ALL) NOPASSWD:ALL&amp;rsquo; if you don&amp;rsquo;t want to be prompted a password.&#xA;If you are prompted for a password with &amp;lsquo;sudo&amp;rsquo; it is the user password, not root.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Comment installer Linux depuis le disque dur ou une clé</title>
      <link>https://jmanteau.fr/informatique/linux/comment-installer-linux-depuis-le-disque-dur-ou-une-cle/</link>
      <pubDate>Wed, 26 Mar 2008 21:29:10 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/linux/comment-installer-linux-depuis-le-disque-dur-ou-une-cle/</guid>
      <description>&lt;p&gt;En premier récupérez l’iso de votre choix (install,LiveCD de votre distro)&lt;/p&gt;&#xA;&lt;p&gt;Ouvrez ou montez l’iso puis cherchez les deux fichiers suivants:&lt;/p&gt;&#xA;&lt;p&gt;Fedora: vmlinuz and initrd.img&#xA;Suse: linux and initrd&#xA;Mandriva: vmlinuz and all.rdz&#xA;Ubuntu: vmlinuz and initrd.gz&#xA;Gentoo: gentoo and gentoo.igz&#xA;Knoppix: vmlinuz and initrd.img&#xA;Slackware: bzImage and initrd.img&#xA;Debian: vmlinuz and initrd.gz&lt;/p&gt;&#xA;&lt;p&gt;Ouvrez votre grub.lst et ajoutez&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#586e75;background-color:#eee8d5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;#ADD NEW ENTRY# &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;title Install Linux root (hdX,X) kernel /distro/Linux_kernel initrd /distro/Ram_disk&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Replace Linux_kernel and Ram_disk with the appropriate file names below`&lt;/p&gt;</description>
    </item>
    <item>
      <title>Easter Egg dans Calc</title>
      <link>https://jmanteau.fr/informatique/bazar/easter-egg-dans-calc/</link>
      <pubDate>Mon, 04 Feb 2008 23:02:25 +0000</pubDate>
      <guid>https://jmanteau.fr/informatique/bazar/easter-egg-dans-calc/</guid>
      <description>&lt;p&gt;Même les logiciels libres ont leur Easter Egg (&lt;a href=&#34;http://fr.wikipedia.org/wiki/Easter_egg&#34;&gt;http://fr.wikipedia.org/wiki/Easter_egg&lt;/a&gt;) !&lt;/p&gt;&#xA;&lt;p&gt;Ouvrez Calc, le tableur d’OpenOffice.Org et tapez dans une cellule : =GAME(« StarWars »)&lt;/p&gt;&#xA;&lt;p&gt;Vous aurez alors un clone d’Invaders, le jeu classique qui consiste à anéantir les aliens tout en se protégeant sous des blocs .&lt;/p&gt;&#xA;&lt;p&gt;Bonne partie!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Premier Pas</title>
      <link>https://jmanteau.fr/divers/premier-pas/</link>
      <pubDate>Wed, 30 Jan 2008 10:02:17 +0000</pubDate>
      <guid>https://jmanteau.fr/divers/premier-pas/</guid>
      <description>&lt;p&gt;Bonjour à tous.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Il faut toujours un début donc voici les premiers pas de ce blog. Il est encore jeune et on va voir ses choix d’orientation au fur et à mesure.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;D’or et déjà cela parlera de:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;logiciels libres, Linux&lt;/li&gt;&#xA;&lt;li&gt;tips et astuces&lt;/li&gt;&#xA;&lt;li&gt;photos&lt;/li&gt;&#xA;&lt;li&gt;choses inutiles&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Pour le reste on verra au fur et à mesure…&lt;/p&gt;</description>
    </item>
    <item>
      <title>A propos</title>
      <link>https://jmanteau.fr/a-propos/</link>
      <pubDate>Tue, 29 Jan 2008 20:20:24 +0000</pubDate>
      <guid>https://jmanteau.fr/a-propos/</guid>
      <description>&lt;p&gt;[icon name=icon-book]&lt;a href=&#34;http://jmanteau.fr/wp-content/uploads/2008/01/20130317-jmanteau-CV1.pdf&#34;&gt;CV PDF en français&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;projets-effectués&#34;&gt;Projets effectués&lt;/h1&gt;&#xA;&lt;p&gt;&lt;strong&gt;C :&lt;/strong&gt; simulation d’un commutateur réseau (2 mois) &lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/c/RapportCommutateurfinal.pdf&#34;&gt;&lt;em&gt;Rapport&lt;/em&gt;&lt;/a&gt; &lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/c/Projet_C.zip&#34;&gt;&lt;em&gt;Sources&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Java :&lt;/strong&gt; un émulateur de réseau mobile adhoc (MANET) sur lequel sera utilisé le protocole DSR avec interface graphique (2 mois) &lt;em&gt;&lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/Java/java2007-2tr-g11-rapport.pdf&#34;&gt;Rapport&lt;/a&gt; &lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/Java/java2007-2tr-g11-sources.jar&#34;&gt;Sources&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;Pascal :&lt;/strong&gt; création un programme permettant d’émuler un processeur simple exécutant des routines assembleurs (6 semaines) &lt;em&gt;&lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/Pascal/rapport.pdf&#34;&gt;Rapport&lt;/a&gt; &lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/Pascal/Emulation_processeur_pascal.tar.gz&#34;&gt;Sources&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;C :&lt;/strong&gt; écriture d’un driver système linux permettant une connexion ethernet via un port parralèle (3 semaines) &lt;em&gt;&lt;a href=&#34;http://localhost:8888/wp-content/uploads/projets/PortParrallele/srciop.zip&#34;&gt;Source&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
