<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Notes feed</title><description>The latest notes published on Armand Philippot&apos;s website.</description><link>https://armand.philippot.eu/</link><language>en-us</language><atom:link href="https://armand.philippot.eu/en/notes/feed.xml" rel="self" type="application/rss+xml"/><item><title>[Note] Pacdiff</title><link>https://armand.philippot.eu/en/notes/pacdiff/</link><guid isPermaLink="true">https://armand.philippot.eu/en/notes/pacdiff/</guid><description>A reminder about using pacdiff with Manjaro.</description><pubDate>Tue, 21 Jan 2025 19:48:00 GMT</pubDate><content:encoded>&lt;h2 id=&quot;install&quot;&gt;Install&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;pacdiff&lt;/code&gt; is no longer included in new install of Manjaro, so:&lt;/p&gt;
&lt;figure data-cli=&quot;true&quot; data-astro-cid-drcs5kw5=&quot;true&quot; data-full-width=&quot;true&quot; data-astro-cid-ikcnfpuo=&quot;&quot;&gt; 
  &lt;figcaption aria-label=&quot;Extrait d’un fichier bash&quot; data-astro-cid-drcs5kw5=&quot;&quot;&gt; bash &lt;/figcaption&gt;
  
  &lt;pre tabindex=&quot;0&quot; data-astro-cid-drcs5kw5=&quot;&quot; data-language=&quot;bash&quot;&gt;&lt;code&gt;&lt;span&gt;&lt;span&gt;sudo&lt;/span&gt;&lt;span&gt; pacman&lt;/span&gt;&lt;span&gt; -S&lt;/span&gt;&lt;span&gt; pacman-contrib&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
 &lt;/figure&gt;  
&lt;h2 id=&quot;use&quot;&gt;Use&lt;/h2&gt;
&lt;figure data-cli=&quot;true&quot; data-astro-cid-drcs5kw5=&quot;true&quot; data-full-width=&quot;true&quot; data-astro-cid-ikcnfpuo=&quot;&quot;&gt; 
  &lt;figcaption aria-label=&quot;Extrait d’un fichier bash&quot; data-astro-cid-drcs5kw5=&quot;&quot;&gt; bash &lt;/figcaption&gt;
  
  &lt;pre tabindex=&quot;0&quot; data-astro-cid-drcs5kw5=&quot;&quot; data-language=&quot;bash&quot;&gt;&lt;code&gt;&lt;span&gt;&lt;span&gt;sudo&lt;/span&gt;&lt;span&gt; pacdiff&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
 &lt;/figure&gt;  
&lt;h2 id=&quot;commands&quot;&gt;Commands&lt;/h2&gt;
&lt;p&gt;Some useful commands because I’m not used to vimdiff:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;d&lt;/kbd&gt; &lt;kbd&gt;o&lt;/kbd&gt;&lt;/kbd&gt; - Get changes from the other window into the current window.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;d&lt;/kbd&gt; &lt;kbd&gt;p&lt;/kbd&gt;&lt;/kbd&gt; - Put the changes from the current window into the other window.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;]&lt;/kbd&gt; &lt;kbd&gt;c&lt;/kbd&gt;&lt;/kbd&gt; - Jump to the next change.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;[&lt;/kbd&gt; &lt;kbd&gt;c&lt;/kbd&gt;&lt;/kbd&gt; - Jump to the previous change.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;z&lt;/kbd&gt; &lt;kbd&gt;o&lt;/kbd&gt;&lt;/kbd&gt; - Open folded lines.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;z&lt;/kbd&gt; &lt;kbd&gt;c&lt;/kbd&gt;&lt;/kbd&gt; - Close folded lines.&lt;/li&gt;
&lt;li&gt;&lt;kbd&gt;&lt;kbd&gt;Ctrl&lt;/kbd&gt; + &lt;kbd&gt;w&lt;/kbd&gt; &lt;kbd&gt;w&lt;/kbd&gt;&lt;/kbd&gt; - Change window.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;:only | wq&lt;/code&gt; - Quit other windows, write and quit.&lt;/li&gt;
&lt;/ul&gt;</content:encoded><category>Linux</category></item><item><title>[Note] Typography with Unicode</title><link>https://armand.philippot.eu/en/notes/unicode-typography/</link><guid isPermaLink="true">https://armand.philippot.eu/en/notes/unicode-typography/</guid><description>A summary of the Unicode combinations to use to respect French typography.</description><pubDate>Sat, 04 Jan 2025 20:32:00 GMT</pubDate><content:encoded>&lt;p&gt;I write a lot in a code editor and sometimes I forget which combination allows me to write the desired character with Unicode. So, here is a quick summary that fits my needs.&lt;/p&gt;
&lt;p&gt;With Linux, we need the following combination &lt;kbd&gt;&lt;kbd&gt;Ctrl&lt;/kbd&gt; + &lt;kbd&gt;Shift&lt;/kbd&gt; + &lt;kbd&gt;u&lt;/kbd&gt;&lt;/kbd&gt; to enter the alphanumeric code after &lt;code&gt;U+&lt;/code&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Typographic apostrophe: &lt;code&gt;U+2019&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Non-breaking space: &lt;code&gt;U+00A0&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Narrow non-breaking space: &lt;code&gt;U+202F&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Ellipsis points: &lt;code&gt;U+2026&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Left quotation mark: &lt;code&gt;U+00AB&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Right quotation mark: &lt;code&gt;U+00BB&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Em dash: &lt;code&gt;U+2014&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;</content:encoded><category>Typography</category></item></channel></rss>