Variables navigation

  1. Page variables
    1. .Data
    2. .Content
    3. .RawContent
    4. .Plain
    5. .PlainWords
    6. .Params
  2. File variables
  3. Scalar .Site variables
  4. .GitInfo
  5. List .Site variables
    1. .Site.Languages
    2. .Site.Taxonomies
    3. .Site.RegularPages
    4. .Site.Pages
    5. .Site.AllPages
    6. .Site.Sections
    7. .Site.Params
    8. .Site.Menus
      1. main
  6. .Resources

Page variables

Variable nameValueDescription
.Date2019-12-08 14:32:02 -0500 -0500the date associated with the page; .Date pulls from the date field in a content’s front matter. See also .ExpiryDate, .PublishDate, and .Lastmod.
.Descriptionthe description for the page.
.Draftfalsea boolean, true if the content is marked as a draft in the front matter.
.ExpiryDate0001-01-01 00:00:00 +0000 UTCthe date on which the content is scheduled to expire; .ExpiryDate pulls from the expirydate field in a content’s front matter. See also .PublishDate, .Date, and .Lastmod.
.Filedocs/meta/debug.mdfilesystem-related data for this content file. See also File Variables.
.FuzzyWordCount100the approximate number of words in the content.
.IsHomefalsetrue in the context of the homepage.
.IsNodefalsealways false for regular content pages.
.IsPagetruealways true for regular content pages.
.IsTranslatedfalsetrue if there are translations to display.
.Keywords[]the meta keywords for the content.
.Kindpagethe page’s kind. Possible return values are page, home, section, taxonomy, or taxonomyTerm. Note that there are also RSS, sitemap, robotsTXT, and 404 kinds, but these are only available during the rendering of each of these respective page’s kind and therefore not available in any of the Pages collections.
.Langenlanguage taken from the language extension notation.
.Languageena language object that points to the language’s definition in the site config.
.Lastmod2019-12-08 14:32:02 -0500 -0500

the date the content was last modified. .Lastmod pulls from the lastmod field in a content’s front matter.

  • If lastmod is not set, and .GitInfo feature is disabled, the front matter date field will be used.
  • If lastmod is not set, and .GitInfo feature is enabled, .GitInfo.AuthorDate will be used instead.
.LinkTitleDebugaccess when creating links to the content. If set, Hugo will use the linktitle from the front matter before title.
.OutputFormats[{canonical {html text/html index canonical false true false false true 10} /docs/meta/debug/ https://alexandre.deverteuil.net/docs/meta/debug/}]contains all formats, including the current format, for a given page. Can be combined the with .Get function to grab a specific format. (See Output Formats.)
.PrevPagePointer to the previous regular page (sorted by Hugo’s default sort).
.NextPagePointer to the next regular page (sorted by Hugo’s default sort).
.PrevInSectionPointer to the previous regular page within the same section. Pages are sorted by Hugo’s default sort.
.NextInSectionPointer to the next regular page within the same section. Pages are sorted by Hugo’s default sort.
.Pages
    a collection of associated pages. This value will be nil within the context of regular content pages. See .Pages.
    .Permalinkhttps://alexandre.deverteuil.net/docs/meta/debug/the Permanent link for this page; see Permalinks
    .PublishDate2019-12-08 14:32:02 -0500 -0500the date on which the content was or will be published; .Publishdate pulls from the publishdate field in a content’s front matter. See also .ExpiryDate, .Date, and .Lastmod.
    .ReadingTime0the estimated time, in minutes, it takes to read the content.
    .RelPermalink/docs/meta/debug/the relative permanent link for this page.
    .SectiondocsThe section this content belongs to. Note: For nested sections, this is the first path element in the directory, for example, /blog/funny/mypost/ => blog.
    .SectionsPages(0)The sections below this content.
    .Summarya generated summary of the content for easily showing a snippet in a summary view. The breakpoint can be set manually by inserting <!--more--> at the appropriate place in the content page. See Content Summaries for more details.
    .TitleDebugthe title for this page.
    .Translations
      a list of translated versions of the current page. See Multilingual Mode for more information.
      .Truncatedfalsea boolean, true if the .Summary is truncated. Useful for showing a “Read more…” link only when necessary. See Summaries for more information.
      .Typedebugthe content type of the content (e.g., post).
      .Weight0assigned weight (in the front matter) to this content, used in sorting.
      .WordCount0the number of words in the content.

      .Data

      The data specific to this type of page.

      {}

      .Content

      The content itself, defined below the front matter.

      .RawContent

      Raw markdown content without the front matter. Useful with remarkjs.com

      .Plain

      The Page content stripped of HTML tags and presented as a string.

      .PlainWords

      the Page content stripped of HTML as a []string using Go’s strings.Fields to split .Plain into a slice.

      [ ]

      .TableOfContents

      The rendered table of contents for the page.

      .Params

      {"authors":[],"categories":[],"date":"2019-12-08T14:32:02-05:00","draft":false,"featured":false,"image":{"caption":"","focal_point":"","preview_only":false},"iscjklanguage":false,"lastmod":"2019-12-08T14:32:02-05:00","publishdate":"2019-12-08T14:32:02-05:00","subtitle":"","summary":"","tags":[],"title":"Debug","type":"debug"}

      .File variables

      Variable nameValueDescription
      .File.Pathdocs/meta/debug.mdthe original relative path of the page, relative to the content dir (e.g., posts/foo.en.md)
      .File.LogicalNamedebug.mdthe name of the content file that represents a page (e.g., foo.en.md)
      .File.TranslationBaseNamedebugthe filename without extension or optional language identifier (e.g., foo)
      .File.ContentBaseNamedebugis a either TranslationBaseName or name of containing folder if file is a leaf bundle.
      .File.BaseFileNamedebugthe filename without extension (e.g., foo.en)
      .File.Extmdthe file extension of the content file (e.g., md); this can also be called using .File.Extension as well. Note that it is only the extension without ..
      .File.Langenthe language associated with the given file if Hugo's Multilingual features are enabled (e.g., en)
      .File.Dirdocs/meta/given the path content/posts/dir1/dir2/, the relative directory path of the content file will be returned (e.g., posts/dir1/dir2/). Note that the path separator (\ or /) could be dependent on the operating system.
      .File.UniqueID56e9c7fb0c67b27fa73b4b5f4bf7c879the MD5-checksum of the content file's path.

      Scalar .Site variables

      Variable nameValueMeaning
      .Site.BaseURLhttps://alexandre.deverteuil.net/the base URL for the site as defined in the site configuration.
      .Site.Copyrighta string representing the copyright of your website as defined in the site configuration.
      .Site.GoogleAnalyticsa string representing your tracking code for Google Analytics as defined in the site configuration.
      .Site.IsMultiLingualfalsewhether there are more than one language in this site. See Multilingual for more information.
      .Site.Language.Langenthe language code of the current locale (e.g., en).
      .Site.Language.LanguageNamethe full language name (e.g. English).
      .Site.LastChange2024-04-08 18:42:10 -0600 MDTa string representing the date/time of the most recent change to your site. This string is based on the date variable in the front matter of your content pages.
      .Site.TitleAlexandre de Verteuila string representing the title of the site.

      .GitInfo

      Get the last Git revision information for every content file.

      .GitInfo is not defined

      List .Site variables

      .Site.Languages

      1. {"Lang":"en","LanguageName":"","LanguageCode":"en-us","Title":"","LanguageDirection":"","Weight":0,"Disabled":false}

      .Site.Taxonomies

      1. authors
      2. categories
      3. publication_types
        • tags

        .Site.RegularPages

        .Title.RelPermalink.File.Path.IsHome.IsNode.IsPage.IsTranslated.Keywords.Kind.Lang.Type.Permalink.Section
        Styles/docs/meta/styles/docs/meta/styles.mdfalsefalsetruefalse[]pageenbook/docs/meta/styles/docs
        March 2024 in Review/post/2024-03-month-in-review/post/2024-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-03-month-in-review/post
        Things to do in Montreal/post/things-to-do-in-montreal/post/things-to-do-in-montreal/index.mdfalsefalsetruefalse[]pageenpost/post/things-to-do-in-montreal/post
        February 2024 in review/post/2024-02-month-in-review/post/2024-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-02-month-in-review/post
        January 2024 in review/post/2024-01-month-in-review/post/2024-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-01-month-in-review/post
        December 2023 in review/post/2023-12-month-in-review/post/2023-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-12-month-in-review/post
        Mumbai 2023/post/mumbai-2023/post/mumbai-2023/index.mdfalsefalsetruefalse[]pageenpost/post/mumbai-2023/post
        November 2023 in review/post/2023-11-month-in-review/post/2023-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-11-month-in-review/post
        The internal and external structure of working procedures/post/internal-and-external-structure-of-documentation/post/internal-and-external-structure-of-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/internal-and-external-structure-of-documentation/post
        October 2023 in review/post/2023-10-month-in-review/post/2023-10-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-10-month-in-review/post
        September 2023 in review/post/2023-09-month-in-review/post/2023-09-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-09-month-in-review/post
        Borg backup server on TrueNAS SCALE/post/borg-backup-server-on-truenas-scale/post/borg-backup-server-on-truenas-scale/index.mdfalsefalsetruefalse[]pageenpost/post/borg-backup-server-on-truenas-scale/post
        August 2023 in review/post/2023-08-month-in-review/post/2023-08-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-08-month-in-review/post
        July 2023 in review/post/2023-07-month-in-review/post/2023-07-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-07-month-in-review/post
        June 2023 in review/post/2023-06-month-in-review/post/2023-06-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-06-month-in-review/post
        May 2023 in review/post/2023-05-month-in-review/post/2023-05-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-05-month-in-review/post
        Glass window poetry/post/glass-window-poetry/post/glass-window-poetry/index.mdfalsefalsetruefalse[]pageenpost/post/glass-window-poetry/post
        Debugging process_exporter group naming configuration/post/debugging-process-exporter-group-naming-configuration/post/debugging-process-exporter-group-naming-configuration/index.mdfalsefalsetruefalse[]pageenpost/post/debugging-process-exporter-group-naming-configuration/post
        April 2023 in review/post/2023-04-month-in-review/post/2023-04-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-04-month-in-review/post
        March 2023 in review/post/2023-03-month-in-review/post/2023-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-03-month-in-review/post
        My hobbies/post/my-hobbies/post/my-hobbies/index.mdfalsefalsetruefalse[]pageenpost/post/my-hobbies/post
        Santa Fe wildlife/post/santa-fe-wildlife/post/santa-fe-wildlife/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-wildlife/post
        Santa Fe aesthetics/post/santa-fe-aesthetics/post/santa-fe-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-aesthetics/post
        February 2023 in review/post/2023-02-month-in-review/post/2023-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-02-month-in-review/post
        To do this again/post/to-do-this-again/post/to-do-this-again/index.mdfalsefalsetruefalse[]pageenpost/post/to-do-this-again/post
        January 2023 in review/post/2023-01-month-in-review/post/2023-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-01-month-in-review/post
        December 2022 in review/post/2022-12-month-in-review/post/2022-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-12-month-in-review/post
        Santa Fe Arrival/post/santa-fe-arrival/post/santa-fe-arrival/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-arrival/post
        November 2022 in review/post/2022-11-month-in-review/post/2022-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-11-month-in-review/post
        Solving Mom's stuck freezer drawer puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/index.mdfalsefalsetruefalse[]pageenpost/post/solving-moms-stuck-freezer-drawer-puzzle/post
        Monitoring TrueNAS With Prometheus and Loki/post/monitoring-truenas-with-prometheus-and-loki/post/monitoring-truenas-with-prometheus-and-loki/index.mdfalsefalsetruefalse[]pageenpost/post/monitoring-truenas-with-prometheus-and-loki/post
        Synchronizing files across phone, laptop and NAS with Nextcloud and Syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/index.mdfalsefalsetruefalse[]pageenpost/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post
        August 2022 trip to Chicago/post/chicago-2022/post/chicago-2022/index.mdfalsefalsetruefalse[]pageenpost/post/chicago-2022/post
        Using Rsyslog and Promtail to relay syslog messages to Loki/post/syslog-relay-for-loki/post/syslog-relay-for-loki/index.mdfalsefalsetruefalse[]pageenpost/post/syslog-relay-for-loki/post
        Fixion/post/fixion/post/fixion/index.mdfalsefalsetruefalse[]pageenpost/post/fixion/post
        When it rains in the bowl/post/when-it-rains-in-the-bowl/post/when-it-rains-in-the-bowl/index.mdfalsefalsetruefalse[]pageenpost/post/when-it-rains-in-the-bowl/post
        Addon game with reverse/post/addon-game-with-reverse/post/addon-game-with-reverse/index.mdfalsefalsetruefalse[]pageenpost/post/addon-game-with-reverse/post
        Pourquoi Pas art exhibit/post/pourquoi-pas-exhibit/post/pourquoi-pas-exhibit/index.mdfalsefalsetruefalse[]pageenpost/post/pourquoi-pas-exhibit/post
        Visualize Matomo metrics in Grafana/post/visualize-matomo-metrics-in-grafana/post/visualize-matomo-metrics-in-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/visualize-matomo-metrics-in-grafana/post
        Using TrueNAS as an iSCSI storage backend for libvirt/post/truenas-iscsi-storage-backend-for-libvirt/post/truenas-iscsi-storage-backend-for-libvirt/index.mdfalsefalsetruefalse[]pageenpost/post/truenas-iscsi-storage-backend-for-libvirt/post
        Venus/post/venus/post/venus/index.mdfalsefalsetruefalse[]pageenpost/post/venus/post
        A June walk on Duluth/post/a-june-walk-on-duluth/post/a-june-walk-on-duluth/index.mdfalsefalsetruefalse[]pageenpost/post/a-june-walk-on-duluth/post
        Up nor down/post/up-nor-down/post/up-nor-down/index.mdfalsefalsetruefalse[]pageenpost/post/up-nor-down/post
        Becoming a Solutions Architect/post/becoming-a-solutions-architect/post/becoming-a-solutions-architect/index.mdfalsefalsetruefalse[]pageenpost/post/becoming-a-solutions-architect/post
        Workspace æsthetics/post/workspace-aesthetics/post/workspace-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/workspace-aesthetics/post
        Food storage system/post/food-storage-system/post/food-storage-system/index.mdfalsefalsetruefalse[]pageenpost/post/food-storage-system/post
        Journaling table of contents/post/journaling-toc/post/journaling-toc/index.mdfalsefalsetruefalse[]pageenpost/post/journaling-toc/post
        Summer/post/summer/post/summer/index.mdfalsefalsetruefalse[]pageenpost/post/summer/post
        How to become a systems administrator/post/how-to-become-a-systems-administrator/post/how-to-become-a-systems-administrator/index.mdfalsefalsetruefalse[]pageenpost/post/how-to-become-a-systems-administrator/post
        Informal learning with podcasts/post/informal-learning-with-podcasts/post/informal-learning-with-podcasts/index.mdfalsefalsetruefalse[]pageenpost/post/informal-learning-with-podcasts/post
        Writing instruments/post/writing-instruments/post/writing-instruments/index.mdfalsefalsetruefalse[]pageenpost/post/writing-instruments/post
        Linking is better than integrating/post/linking-gt-integrating/post/linking-gt-integrating/index.mdfalsefalsetruefalse[]pageenpost/post/linking-gt-integrating/post
        House cleaning/post/house-cleaning/post/house-cleaning/index.mdfalsefalsetruefalse[]pageenpost/post/house-cleaning/post
        Dates/docs/meta/dates/docs/meta/dates/index.mdfalsefalsetruefalse[]pageenbook/docs/meta/dates/docs
        Magnetic knife holder/post/magnetic-knife-holder/post/magnetic-knife-holder/index.mdfalsefalsetruefalse[]pageenpost/post/magnetic-knife-holder/post
        Troubleshooting pfSense reboots with Grafana/post/troubleshooting-pfsense-reboots-with-grafana/post/troubleshooting-pfsense-reboots-with-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/troubleshooting-pfsense-reboots-with-grafana/post
        Configuring the Nextcloud client for Android/post/configuring-nextcloud-client-for-android/post/configuring-nextcloud-client-for-android/index.mdfalsefalsetruefalse[]pageenpost/post/configuring-nextcloud-client-for-android/post
        2021 Montreal parkour jam/post/2021-montreal-parkour-jam/post/2021-montreal-parkour-jam/index.mdfalsefalsetruefalse[]pageenpost/post/2021-montreal-parkour-jam/post
        The floor is lava/post/the-floor-is-lava/post/the-floor-is-lava/index.mdfalsefalsetruefalse[]pageenpost/post/the-floor-is-lava/post
        How I organize my home directory/post/organize-home-directory/post/organize-home-directory/index.mdfalsefalsetruefalse[]pageenpost/post/organize-home-directory/post
        Blog writing process/post/blog-writing-process/post/blog-writing-process/index.mdfalsefalsetruefalse[]pageenpost/post/blog-writing-process/post
        Blue truck æsthetics/post/blue-truck-aesthetics/post/blue-truck-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/blue-truck-aesthetics/post
        Cauliflower rice/post/making-cauliflower-rice/post/making-cauliflower-rice/index.mdfalsefalsetruefalse[]pageenpost/post/making-cauliflower-rice/post
        Firefox tabs analysis with Prometheus and Grafana/post/firefox-tabs-analysis/post/firefox-tabs-analysis/index.mdfalsefalsetruefalse[]pageenpost/post/firefox-tabs-analysis/post
        Automation, observability/post/automation-observability/post/automation-observability/index.mdfalsefalsetruefalse[]pageenpost/post/automation-observability/post
        Firefox tabs organized/post/organize-firefox-tabs/post/organize-firefox-tabs/index.mdfalsefalsetruefalse[]pageenpost/post/organize-firefox-tabs/post
        Nextcloud self-hosted architecture/post/nextcloud-self-hosted-architecture/post/nextcloud-self-hosted-architecture/index.mdfalsefalsetruefalse[]pageenpost/post/nextcloud-self-hosted-architecture/post
        Processing boxes/post/what-250-boxes-look-like/post/what-250-boxes-look-like/index.mdfalsefalsetruefalse[]pageenpost/post/what-250-boxes-look-like/post
        A place for every thing/post/a-place-for-every-thing/post/a-place-for-every-thing/index.mdfalsefalsetruefalse[]pageenpost/post/a-place-for-every-thing/post
        Thoughts on documentation/post/thoughts-on-documentation/post/thoughts-on-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/thoughts-on-documentation/post
        Ça va bien aller Montréal/post/ca-va-bien-aller/post/ca-va-bien-aller/index.mdfalsefalsetruefalse[]pageenpost/post/ca-va-bien-aller/post
        Vidéoconferences efficaces/post/videoconferences-efficaces/post/videoconferences-efficaces/index.mdfalsefalsetruefalse[]pageenpost/post/videoconferences-efficaces/post
        Capture notebook/post/capture-notebook/post/capture-notebook/index.mdfalsefalsetruefalse[]pageenpost/post/capture-notebook/post
        Daily Journal/post/daily-journal/post/daily-journal/index.mdfalsefalsetruefalse[]pageenpost/post/daily-journal/post
        Dragon hunting/post/dragon-hunting/post/dragon-hunting/index.mdfalsefalsetruefalse[]pageenpost/post/dragon-hunting/post
        Dreams journal/post/dreams-journal/post/dreams-journal/index.mdfalsefalsetruefalse[]pageenpost/post/dreams-journal/post
        File cabinet/post/file-cabinet/post/file-cabinet/index.mdfalsefalsetruefalse[]pageenpost/post/file-cabinet/post
        Free Associations/post/free-associations/post/free-associations/index.mdfalsefalsetruefalse[]pageenpost/post/free-associations/post
        GTD stack and project management/post/gtd-stack/post/gtd-stack/index.mdfalsefalsetruefalse[]pageenpost/post/gtd-stack/post
        Notebook/post/notebook/post/notebook/index.mdfalsefalsetruefalse[]pageenpost/post/notebook/post
        Personal stories journal/post/personal-stories/post/personal-stories/index.mdfalsefalsetruefalse[]pageenpost/post/personal-stories/post
        Project journal/post/project-journal/post/project-journal/index.mdfalsefalsetruefalse[]pageenpost/post/project-journal/post
        Étagère à souliers/post/etagere-a-souliers/post/etagere-a-souliers/index.mdfalsefalsetruefalse[]pageenpost/post/etagere-a-souliers/post
        2019 Blog engine migration/post/2019-blog-engine-migration/post/2019-blog-engine-migration/index.mdfalsefalsetruefalse[]pageenpost/post/2019-blog-engine-migration/post
        Debug/docs/meta/debug/docs/meta/debug.mdfalsefalsetruefalse[]pageendebug/docs/meta/debug/docs
        Clé publique/pgp/pgp.mdfalsefalsetruefalse[]pageenpage/pgp/
        Parkour in Stockholm/post/parkour-in-stockholm/post/parkour-in-stockholm/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-stockholm/post
        Parkour in LA/post/parkour-in-la/post/parkour-in-LA/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-la/post
        Supercharge your blackbox_exporter modules/post/supercharge-blackbox-exporter/post/supercharge-blackbox-exporter/index.mdfalsefalsetruefalse[]pageenpost/post/supercharge-blackbox-exporter/post
        Canari Cron Alert/post/canari-cron-alert/post/canari-cron-alert/index.mdfalsefalsetruefalse[]pageenpost/post/canari-cron-alert/post
        Let's Encrypt on load balancers and reverse proxies with tls-sni-01/post/letsencrypt-tls-sni/post/letsencrypt-tls-sni/index.mdfalsefalsetruefalse[]pageenpost/post/letsencrypt-tls-sni/post
        Introduction à Kerberos/post/presentation-kerberos/post/presentation-kerberos/index.mdfalsefalsetruefalse[]pageenpost/post/presentation-kerberos/post
        FreeGEM on OpenStack/post/freegem-on-openstack/post/freegem-on-openstack/index.mdfalsefalsetruefalse[]pageenpost/post/freegem-on-openstack/post
        Session d'entraînement solo/post/session-entrainement-solo-13-novembre-2016/post/session-entrainement-solo-13-novembre-2016/index.mdfalsefalsetruefalse[]pageenpost/post/session-entrainement-solo-13-novembre-2016/post
        Configure LDAP authentication in Nextcloud with FreeIPA/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post/configure-ldap-authentication-in-nextcloud-with-freeipa/index.mdfalsefalsetruefalse[]pageenpost/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post
        Let's Encrypt SSL on NearlyFreeSpeech.net with Ansible/post/ansible-letsencrypt-nfsn/post/ansible-letsencrypt-nfsn/index.mdfalsefalsetruefalse[]pageenpost/post/ansible-letsencrypt-nfsn/post
        Monitorer Nextcloud avec Zabbix/post/monitorer-nextcloud-avec-zabbix/post/monitorer-nextcloud-avec-zabbix/index.mdfalsefalsetruefalse[]pageenpost/post/monitorer-nextcloud-avec-zabbix/post
        Liste de machines virtuelles dans mon réseau/post/liste-de-machines-virtuelles/post/liste-de-machines-virtuelles/index.mdfalsefalsetruefalse[]pageenpost/post/liste-de-machines-virtuelles/post
        Premier pull-request accepté!/post/premier-pull-request-accepte/post/premier-pull-request-accepte/index.mdfalsefalsetruefalse[]pageenpost/post/premier-pull-request-accepte/post
        New blog iteration/post/new-blog-iteration/post/new-blog-iteration/index.mdfalsefalsetruefalse[]pageenpost/post/new-blog-iteration/post
        OpenPGP key migration/post/openpgp-key-migration/post/openpgp-key-migration/index.mdfalsefalsetruefalse[]pageenpost/post/openpgp-key-migration/post
        Building man pages with Debian packaging scripts/post/building-man-pages-debian-packaging-scripts/post/building-man-pages-debian-packaging-scripts/index.mdfalsefalsetruefalse[]pageenpost/post/building-man-pages-debian-packaging-scripts/post
        Serialize a single task with Ansible/post/serialize-single-task-ansible/post/serialize-single-task-ansible/index.mdfalsefalsetruefalse[]pageenpost/post/serialize-single-task-ansible/post
        The Real Reason We Use Linux (repost)/post/real-reason-we-use-linux/post/real-reason-we-use-linux/index.mdfalsefalsetruefalse[]pageenpost/post/real-reason-we-use-linux/post
        Multiprocessing in Django apps/post/multiprocessing-django-apps/post/multiprocessing-django-apps/index.mdfalsefalsetruefalse[]pageenpost/post/multiprocessing-django-apps/post
        Managed switch case mod/post/managed-switch-case-mod/post/managed-switch-case-mod/index.mdfalsefalsetruefalse[]pageenpost/post/managed-switch-case-mod/post
        Home network rebuild project/post/home-network-rebuild-project/post/home-network-rebuild-project/index.mdfalsefalsetruefalse[]pageenpost/post/home-network-rebuild-project/post
        Let's Encrypt!/post/lets-encrypt/post/lets-encrypt/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt/post
        Compresser une image de disque/post/compresser-une-image-de-disque/post/compresser-une-image-de-disque/index.mdfalsefalsetruefalse[]pageenpost/post/compresser-une-image-de-disque/post
        Trigger a Javascript file drop event with Python and Selenium/post/trigger-javascript-drag-and-drop-event-python-and-/post/trigger-javascript-drag-and-drop-event-python-and-/index.mdfalsefalsetruefalse[]pageenpost/post/trigger-javascript-drag-and-drop-event-python-and-/post
        Système de rangement/post/boites/post/boites/index.mdfalsefalsetruefalse[]pageenpost/post/boites/post
        Position a CSS background like a block element/post/position-css-background-block-element/post/position-css-background-block-element/index.mdfalsefalsetruefalse[]pageenpost/post/position-css-background-block-element/post
        Parkour, coop mode/post/parkour-coop-mode/post/parkour-coop-mode/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-coop-mode/post
        Trespassing/post/trespassing/post/trespassing/index.mdfalsefalsetruefalse[]pageenpost/post/trespassing/post
        3 étagères et autres bricolages/post/3-etageres/post/3-etageres/index.mdfalsefalsetruefalse[]pageenpost/post/3-etageres/post
        Let's Encrypt, un projet prometteur!/post/lets-encrypt-un-projet-prometteur/post/lets-encrypt-un-projet-prometteur/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt-un-projet-prometteur/post
        Mirror provided by iWeb/post/mirror-provided-iweb/post/mirror-provided-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/mirror-provided-iweb/post
        `mailto:` URI handler in Python/post/mailto-uri-handler-python/post/mailto-uri-handler-python/index.mdfalsefalsetruefalse[]pageenpost/post/mailto-uri-handler-python/post
        Spinny Things/post/spinny-things/post/spinny-things/index.mdfalsefalsetruefalse[]pageenpost/post/spinny-things/post
        Calculate months elapsed between two dates in Python/post/calculate-months-between-two-dates-python/post/calculate-months-between-two-dates-python/index.mdfalsefalsetruefalse[]pageenpost/post/calculate-months-between-two-dates-python/post
        Méthode 45° pour plier un tortilla/post/methode-45-pour-plier-un-tortilla/post/methode-45-pour-plier-un-tortilla/index.mdfalsefalsetruefalse[]pageenpost/post/methode-45-pour-plier-un-tortilla/post
        Dynos & Muscle-ups/post/dynos-muscle-ups/post/dynos-muscle-ups/index.mdfalsefalsetruefalse[]pageenpost/post/dynos-muscle-ups/post
        Crochets de suspension pour caddie d'épicerie/post/crochets-de-suspension-pour-caddie-depicerie/post/crochets-de-suspension-pour-caddie-depicerie/index.mdfalsefalsetruefalse[]pageenpost/post/crochets-de-suspension-pour-caddie-depicerie/post
        Pétition pour une enquête sur l’informatique au gouvernement du Québec/post/petition-pour-une-enquete-sur-linformatque/post/petition-pour-une-enquete-sur-linformatque/index.mdfalsefalsetruefalse[]pageenpost/post/petition-pour-une-enquete-sur-linformatque/post
        Topology of the Python stack/post/topology-python-stack/post/topology-python-stack/index.mdfalsefalsetruefalse[]pageenpost/post/topology-python-stack/post
        Séparation et sécurité des disques de sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/separation-et-securite-des-disques-de-sauvegarde/post
        Naviguer dans une page man/post/naviguer-dans-une-page-man/post/naviguer-dans-une-page-man/index.mdfalsefalsetruefalse[]pageenpost/post/naviguer-dans-une-page-man/post
        Antenne fractale/post/antenne-fractale/post/antenne-fractale/index.mdfalsefalsetruefalse[]pageenpost/post/antenne-fractale/post
        Vidéos iWeb/post/videos-iweb/post/videos-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/videos-iweb/post
        Nouvel emploi chez iWeb/post/nouvel-emploi-chez-iweb/post/nouvel-emploi-chez-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/nouvel-emploi-chez-iweb/post
        Migrer ou réparer un système GNU/Linux/post/migrer-ou-reparer-un-systeme-gnulinux/post/migrer-ou-reparer-un-systeme-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/migrer-ou-reparer-un-systeme-gnulinux/post
        Bépo pour l'amour du français/post/bepo-pour-lamour-du-francais/post/bepo-pour-lamour-du-francais/index.mdfalsefalsetruefalse[]pageenpost/post/bepo-pour-lamour-du-francais/post
        Liens pour apprendre GNU/Linux, Python et Bash/post/liens-pour-apprendre-gnulinux-python-et-bash/post/liens-pour-apprendre-gnulinux-python-et-bash/index.mdfalsefalsetruefalse[]pageenpost/post/liens-pour-apprendre-gnulinux-python-et-bash/post
        Unifont as a fallback in rxvt-unicode/post/unifont-and-rxvt-unicode/post/unifont-and-rxvt-unicode/index.mdfalsefalsetruefalse[]pageenpost/post/unifont-and-rxvt-unicode/post
        Le Spot, section orange/post/le-spot-section-orange/post/le-spot-section-orange/index.mdfalsefalsetruefalse[]pageenpost/post/le-spot-section-orange/post
        Marque-quadrant/post/marque-quadrant/post/marque-quadrant/index.mdfalsefalsetruefalse[]pageenpost/post/marque-quadrant/post
        Support pour dual-screen/post/support-pour-dual-screen/post/support-pour-dual-screen/index.mdfalsefalsetruefalse[]pageenpost/post/support-pour-dual-screen/post
        Appréciation de la part de GNU dans GNU/Linux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post
        Colle chaude et roulettes d'imprimante/post/colle-chaude-et-roulettes-dimprimante/post/colle-chaude-et-roulettes-dimprimante/index.mdfalsefalsetruefalse[]pageenpost/post/colle-chaude-et-roulettes-dimprimante/post
        Richard Stallman talk at TEDxGE2014/post/richard-stallman-talk-tedxge2014/post/richard-stallman-talk-tedxge2014/index.mdfalsefalsetruefalse[]pageenpost/post/richard-stallman-talk-tedxge2014/post
        My girlfriend's room/post/my-girlfriends-room/post/my-girlfriends-room/index.mdfalsefalsetruefalse[]pageenpost/post/my-girlfriends-room/post
        Litière à chats efficace et sans tracas/post/litiere-chats-efficace-et-sans-tracas/post/litiere-chats-efficace-et-sans-tracas/index.mdfalsefalsetruefalse[]pageenpost/post/litiere-chats-efficace-et-sans-tracas/post
        Nouveau blogue!/post/nouveau-blogue/post/nouveau-blogue/index.mdfalsefalsetruefalse[]pageenpost/post/nouveau-blogue/post
        JILL avec FACIL/post/jill-avec-facil/post/jill-avec-facil/index.mdfalsefalsetruefalse[]pageenpost/post/jill-avec-facil/post
        City TV Report on The Spot/post/city-tv-report-the-spot/post/city-tv-report-the-spot/index.mdfalsefalsetruefalse[]pageenpost/post/city-tv-report-the-spot/post
        Safety tactics with `rm`/post/safety-tactics-rm/post/safety-tactics-rm/index.mdfalsefalsetruefalse[]pageenpost/post/safety-tactics-rm/post
        Tablettes de cuisine/post/tablettes-de-cuisine/post/tablettes-de-cuisine/index.mdfalsefalsetruefalse[]pageenpost/post/tablettes-de-cuisine/post
        Sending email with openssl and smtp.gmail.com/post/sending-email-openssl-and-smtpgmailcom/post/sending-email-openssl-and-smtpgmailcom/index.mdfalsefalsetruefalse[]pageenpost/post/sending-email-openssl-and-smtpgmailcom/post
        Aiguisage d’une raboteuse/post/aiguisage-dune-raboteuse/post/aiguisage-dune-raboteuse/index.mdfalsefalsetruefalse[]pageenpost/post/aiguisage-dune-raboteuse/post
        Jam de parkour pluvieux/post/jam-de-parkour-pluvieux/post/jam-de-parkour-pluvieux/index.mdfalsefalsetruefalse[]pageenpost/post/jam-de-parkour-pluvieux/post
        Berserk/post/berserk/post/berserk/index.mdfalsefalsetruefalse[]pageenpost/post/berserk/post
        Un bout de tuyau dans le mur/post/un-bout-de-tuyau-dans-le-mur/post/un-bout-de-tuyau-dans-le-mur/index.mdfalsefalsetruefalse[]pageenpost/post/un-bout-de-tuyau-dans-le-mur/post
        Fontaines de couleur/post/fontaines-de-couleur/post/fontaines-de-couleur/index.mdfalsefalsetruefalse[]pageenpost/post/fontaines-de-couleur/post
        Vidéo de parkour : 15 juin 2013/post/video-de-parkour-15-juin-2013/post/video-de-parkour-15-juin-2013/index.mdfalsefalsetruefalse[]pageenpost/post/video-de-parkour-15-juin-2013/post
        Filmographie sur le parkour/post/filmographie-sur-le-parkour/post/filmographie-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/filmographie-sur-le-parkour/post
        Boîtier d'ordinateur en bois/post/boitier-ordinateur-en-bois/post/boitier-ordinateur-en-bois/index.mdfalsefalsetruefalse[]pageenpost/post/boitier-ordinateur-en-bois/post
        Play a music CD with mplayer without skipping/post/play-music-cd-mplayer-without-skipping/post/play-music-cd-mplayer-without-skipping/index.mdfalsefalsetruefalse[]pageenpost/post/play-music-cd-mplayer-without-skipping/post
        Sac anti-statique fait maison/post/sac-anti-statique-fait-maison/post/sac-anti-statique-fait-maison/index.mdfalsefalsetruefalse[]pageenpost/post/sac-anti-statique-fait-maison/post
        Parkour hivernal au Stade olympique/post/parkour-hivernal-au-stade-olympique/post/parkour-hivernal-au-stade-olympique/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-hivernal-au-stade-olympique/post
        Nettoyage de la cartouche de toner/post/nettoyage-de-la-cartouche-de-toner/post/nettoyage-de-la-cartouche-de-toner/index.mdfalsefalsetruefalse[]pageenpost/post/nettoyage-de-la-cartouche-de-toner/post
        rsync Backups and Directory Renaming, a Solution/post/rsync-backups-and-directory-renaming-solution/post/rsync-backups-and-directory-renaming-solution/index.mdfalsefalsetruefalse[]pageenpost/post/rsync-backups-and-directory-renaming-solution/post
        Le calendrier amélioré/post/le-calendrier-ameliore/post/le-calendrier-ameliore/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier-ameliore/post
        Calcul du pourboire/post/calcul-du-pourboire/post/calcul-du-pourboire/index.mdfalsefalsetruefalse[]pageenpost/post/calcul-du-pourboire/post
        Tablette à barbecue/post/tablette-barbecue/post/tablette-barbecue/index.mdfalsefalsetruefalse[]pageenpost/post/tablette-barbecue/post
        Pochette de CD en papier plié/post/paper-cd-case/post/paper-cd-case/index.mdfalsefalsetruefalse[]pageenpost/post/paper-cd-case/post
        Joke de banquier/post/joke-de-banquier/post/joke-de-banquier/index.mdfalsefalsetruefalse[]pageenpost/post/joke-de-banquier/post
        Exercisse de restauration d'une sauvegarde/post/exercice-de-restauration-dune-sauvegarde/post/exercice-de-restauration-dune-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/exercice-de-restauration-dune-sauvegarde/post
        Image Collection Organizing Helper/post/image-collection-organizing-helper/post/image-collection-organizing-helper/index.mdfalsefalsetruefalse[]pageenpost/post/image-collection-organizing-helper/post
        Le cahier Moleskine a 31 lignes/post/le-cahier-moleskine-31-lignes/post/le-cahier-moleskine-31-lignes/index.mdfalsefalsetruefalse[]pageenpost/post/le-cahier-moleskine-31-lignes/post
        Image sorting helper script/post/image-sorting-helper-script/post/image-sorting-helper-script/index.mdfalsefalsetruefalse[]pageenpost/post/image-sorting-helper-script/post
        Monitor Python subprocess' output streams in real-time/post/monitor-python-subprocess-output-streams-real-time/post/monitor-python-subprocess-output-streams-real-time/index.mdfalsefalsetruefalse[]pageenpost/post/monitor-python-subprocess-output-streams-real-time/post
        TV5, Hors série: Traceurs/post/tv5-hors-serie-traceurs/post/tv5-hors-serie-traceurs/index.mdfalsefalsetruefalse[]pageenpost/post/tv5-hors-serie-traceurs/post
        Reportage sur le parkour/post/reportage-sur-le-parkour/post/reportage-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/reportage-sur-le-parkour/post
        How I organize my digital documents/post/how-i-organize-my-digital-documents/post/how-i-organize-my-digital-documents/index.mdfalsefalsetruefalse[]pageenpost/post/how-i-organize-my-digital-documents/post
        Rencontre du 2009-04-25/post/rencontre-du-2009-04-25/post/rencontre-du-2009-04-25/index.mdfalsefalsetruefalse[]pageenpost/post/rencontre-du-2009-04-25/post
        Salto arrière au Stade/post/salto-arriere-au-stade/post/salto-arriere-au-stade/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere-au-stade/post
        Salto arrière/post/salto-arriere/post/salto-arriere/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere/post
        Le calendrier/post/le-calendrier/post/le-calendrier/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier/post

        .Site.Pages

        .Title.RelPermalink.File.Path.IsHome.IsNode.IsPage.IsTranslated.Keywords.Kind.Lang.Type.RelPermalink.Section
        Metadocumentation/docs/meta/docs/meta/_index.mdfalsetruefalsefalse[]sectionenbook/docs/meta/docs
        Styles/docs/meta/styles/docs/meta/styles.mdfalsefalsetruefalse[]pageenbook/docs/meta/styles/docs
        Alexandre de Verteuil/truetruefalsefalse[]homeenpage/
        Categories/categories/falsetruefalsefalse[]taxonomyencategories/categories/categories
        March 2024 in Review/post/2024-03-month-in-review/post/2024-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-03-month-in-review/post
        Month in review/category/month-in-review/falsetruefalsefalse[]termencategories/category/month-in-review/categories
        Personnel/category/personnel/falsetruefalsefalse[]termencategories/category/personnel/categories
        Posts/post/post/_index.mdfalsetruefalsefalse[]sectionenpost/post/post
        Things to do in Montreal/post/things-to-do-in-montreal/post/things-to-do-in-montreal/index.mdfalsefalsetruefalse[]pageenpost/post/things-to-do-in-montreal/post
        February 2024 in review/post/2024-02-month-in-review/post/2024-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-02-month-in-review/post
        January 2024 in review/post/2024-01-month-in-review/post/2024-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-01-month-in-review/post
        December 2023 in review/post/2023-12-month-in-review/post/2023-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-12-month-in-review/post
        Mumbai 2023/post/mumbai-2023/post/mumbai-2023/index.mdfalsefalsetruefalse[]pageenpost/post/mumbai-2023/post
        November 2023 in review/post/2023-11-month-in-review/post/2023-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-11-month-in-review/post
        documentation/tag/documentation/falsetruefalsefalse[]termentags/tag/documentation/tags
        Documentation/category/documentation/falsetruefalsefalse[]termencategories/category/documentation/categories
        Tags/tags/falsetruefalsefalse[]taxonomyentags/tags/tags
        The internal and external structure of working procedures/post/internal-and-external-structure-of-documentation/post/internal-and-external-structure-of-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/internal-and-external-structure-of-documentation/post
        October 2023 in review/post/2023-10-month-in-review/post/2023-10-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-10-month-in-review/post
        September 2023 in review/post/2023-09-month-in-review/post/2023-09-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-09-month-in-review/post
        backups/tag/backups/falsetruefalsefalse[]termentags/tag/backups/tags
        Borg backup server on TrueNAS SCALE/post/borg-backup-server-on-truenas-scale/post/borg-backup-server-on-truenas-scale/index.mdfalsefalsetruefalse[]pageenpost/post/borg-backup-server-on-truenas-scale/post
        Informatique/category/informatique/falsetruefalsefalse[]termencategories/category/informatique/categories
        truenas/tag/truenas/falsetruefalsefalse[]termentags/tag/truenas/tags
        August 2023 in review/post/2023-08-month-in-review/post/2023-08-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-08-month-in-review/post
        July 2023 in review/post/2023-07-month-in-review/post/2023-07-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-07-month-in-review/post
        June 2023 in review/post/2023-06-month-in-review/post/2023-06-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-06-month-in-review/post
        May 2023 in review/post/2023-05-month-in-review/post/2023-05-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-05-month-in-review/post
        Art/category/art/falsetruefalsefalse[]termencategories/category/art/categories
        Glass window poetry/post/glass-window-poetry/post/glass-window-poetry/index.mdfalsefalsetruefalse[]pageenpost/post/glass-window-poetry/post
        Debugging process_exporter group naming configuration/post/debugging-process-exporter-group-naming-configuration/post/debugging-process-exporter-group-naming-configuration/index.mdfalsefalsetruefalse[]pageenpost/post/debugging-process-exporter-group-naming-configuration/post
        prometheus/tag/prometheus/falsetruefalsefalse[]termentags/tag/prometheus/tags
        April 2023 in review/post/2023-04-month-in-review/post/2023-04-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-04-month-in-review/post
        March 2023 in review/post/2023-03-month-in-review/post/2023-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-03-month-in-review/post
        My hobbies/post/my-hobbies/post/my-hobbies/index.mdfalsefalsetruefalse[]pageenpost/post/my-hobbies/post
        Santa Fe/category/santa-fe/falsetruefalsefalse[]termencategories/category/santa-fe/categories
        Santa Fe wildlife/post/santa-fe-wildlife/post/santa-fe-wildlife/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-wildlife/post
        Santa Fe aesthetics/post/santa-fe-aesthetics/post/santa-fe-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-aesthetics/post
        February 2023 in review/post/2023-02-month-in-review/post/2023-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-02-month-in-review/post
        To do this again/post/to-do-this-again/post/to-do-this-again/index.mdfalsefalsetruefalse[]pageenpost/post/to-do-this-again/post
        January 2023 in review/post/2023-01-month-in-review/post/2023-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-01-month-in-review/post
        December 2022 in review/post/2022-12-month-in-review/post/2022-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-12-month-in-review/post
        Santa Fe Arrival/post/santa-fe-arrival/post/santa-fe-arrival/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-arrival/post
        November 2022 in review/post/2022-11-month-in-review/post/2022-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-11-month-in-review/post
        Solving Mom's stuck freezer drawer puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/index.mdfalsefalsetruefalse[]pageenpost/post/solving-moms-stuck-freezer-drawer-puzzle/post
        freenas/tag/freenas/falsetruefalsefalse[]termentags/tag/freenas/tags
        grafana/tag/grafana/falsetruefalsefalse[]termentags/tag/grafana/tags
        loki/tag/loki/falsetruefalsefalse[]termentags/tag/loki/tags
        monitoring/tag/monitoring/falsetruefalsefalse[]termentags/tag/monitoring/tags
        Monitoring TrueNAS With Prometheus and Loki/post/monitoring-truenas-with-prometheus-and-loki/post/monitoring-truenas-with-prometheus-and-loki/index.mdfalsefalsetruefalse[]pageenpost/post/monitoring-truenas-with-prometheus-and-loki/post
        android/tag/android/falsetruefalsefalse[]termentags/tag/android/tags
        nextcloud/tag/nextcloud/falsetruefalsefalse[]termentags/tag/nextcloud/tags
        Organization/category/organization/falsetruefalsefalse[]termencategories/category/organization/categories
        organizing/tag/organizing/falsetruefalsefalse[]termentags/tag/organizing/tags
        Synchronizing files across phone, laptop and NAS with Nextcloud and Syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/index.mdfalsefalsetruefalse[]pageenpost/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post
        August 2022 trip to Chicago/post/chicago-2022/post/chicago-2022/index.mdfalsefalsetruefalse[]pageenpost/post/chicago-2022/post
        voyage/tag/voyage/falsetruefalsefalse[]termentags/tag/voyage/tags
        Using Rsyslog and Promtail to relay syslog messages to Loki/post/syslog-relay-for-loki/post/syslog-relay-for-loki/index.mdfalsefalsetruefalse[]pageenpost/post/syslog-relay-for-loki/post
        Fixion/post/fixion/post/fixion/index.mdfalsefalsetruefalse[]pageenpost/post/fixion/post
        selfhosting/tag/selfhosting/falsetruefalsefalse[]termentags/tag/selfhosting/tags
        poem/tag/poem/falsetruefalsefalse[]termentags/tag/poem/tags
        When it rains in the bowl/post/when-it-rains-in-the-bowl/post/when-it-rains-in-the-bowl/index.mdfalsefalsetruefalse[]pageenpost/post/when-it-rains-in-the-bowl/post
        authors/_index.mdfalsetruefalsefalse[]taxonomyenauthorsauthors
        Addon game with reverse/post/addon-game-with-reverse/post/addon-game-with-reverse/index.mdfalsefalsetruefalse[]pageenpost/post/addon-game-with-reverse/post
        Alexandre de Verteuilauthors/admin/_index.mdfalsetruefalsefalse[]termenauthorsauthors
        parkour/tag/parkour/falsetruefalsefalse[]termentags/tag/parkour/tags
        Parkour/category/parkour/falsetruefalsefalse[]termencategories/category/parkour/categories
        vidéo/tag/video/falsetruefalsefalse[]termentags/tag/video/tags
        Pourquoi Pas art exhibit/post/pourquoi-pas-exhibit/post/pourquoi-pas-exhibit/index.mdfalsefalsetruefalse[]pageenpost/post/pourquoi-pas-exhibit/post
        Visualize Matomo metrics in Grafana/post/visualize-matomo-metrics-in-grafana/post/visualize-matomo-metrics-in-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/visualize-matomo-metrics-in-grafana/post
        sysadmin/tag/sysadmin/falsetruefalsefalse[]termentags/tag/sysadmin/tags
        Using TrueNAS as an iSCSI storage backend for libvirt/post/truenas-iscsi-storage-backend-for-libvirt/post/truenas-iscsi-storage-backend-for-libvirt/index.mdfalsefalsetruefalse[]pageenpost/post/truenas-iscsi-storage-backend-for-libvirt/post
        Venus/post/venus/post/venus/index.mdfalsefalsetruefalse[]pageenpost/post/venus/post
        A June walk on Duluth/post/a-june-walk-on-duluth/post/a-june-walk-on-duluth/index.mdfalsefalsetruefalse[]pageenpost/post/a-june-walk-on-duluth/post
        Up nor down/post/up-nor-down/post/up-nor-down/index.mdfalsefalsetruefalse[]pageenpost/post/up-nor-down/post
        Becoming a Solutions Architect/post/becoming-a-solutions-architect/post/becoming-a-solutions-architect/index.mdfalsefalsetruefalse[]pageenpost/post/becoming-a-solutions-architect/post
        career/tag/career/falsetruefalsefalse[]termentags/tag/career/tags
        Workspace æsthetics/post/workspace-aesthetics/post/workspace-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/workspace-aesthetics/post
        Cooking/category/cooking/falsetruefalsefalse[]termencategories/category/cooking/categories
        Food storage system/post/food-storage-system/post/food-storage-system/index.mdfalsefalsetruefalse[]pageenpost/post/food-storage-system/post
        home/tag/home/falsetruefalsefalse[]termentags/tag/home/tags
        jars/tag/jars/falsetruefalsefalse[]termentags/tag/jars/tags
        Journaling table of contents/post/journaling-toc/post/journaling-toc/index.mdfalsefalsetruefalse[]pageenpost/post/journaling-toc/post
        Summer/post/summer/post/summer/index.mdfalsefalsetruefalse[]pageenpost/post/summer/post
        How to become a systems administrator/post/how-to-become-a-systems-administrator/post/how-to-become-a-systems-administrator/index.mdfalsefalsetruefalse[]pageenpost/post/how-to-become-a-systems-administrator/post
        learning/tag/learning/falsetruefalsefalse[]termentags/tag/learning/tags
        Informal learning with podcasts/post/informal-learning-with-podcasts/post/informal-learning-with-podcasts/index.mdfalsefalsetruefalse[]pageenpost/post/informal-learning-with-podcasts/post
        journaling/tag/journaling/falsetruefalsefalse[]termentags/tag/journaling/tags
        Writing instruments/post/writing-instruments/post/writing-instruments/index.mdfalsefalsetruefalse[]pageenpost/post/writing-instruments/post
        Linking is better than integrating/post/linking-gt-integrating/post/linking-gt-integrating/index.mdfalsefalsetruefalse[]pageenpost/post/linking-gt-integrating/post
        House cleaning/post/house-cleaning/post/house-cleaning/index.mdfalsefalsetruefalse[]pageenpost/post/house-cleaning/post
        kitchen/tag/kitchen/falsetruefalsefalse[]termentags/tag/kitchen/tags
        Dates/docs/meta/dates/docs/meta/dates/index.mdfalsefalsetruefalse[]pageenbook/docs/meta/dates/docs
        Documentation/docs/docs/_index.mdfalsetruefalsefalse[]sectionendocs/docs/docs
        création/tag/creation/falsetruefalsefalse[]termentags/tag/creation/tags
        Magnetic knife holder/post/magnetic-knife-holder/post/magnetic-knife-holder/index.mdfalsefalsetruefalse[]pageenpost/post/magnetic-knife-holder/post
        Troubleshooting pfSense reboots with Grafana/post/troubleshooting-pfsense-reboots-with-grafana/post/troubleshooting-pfsense-reboots-with-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/troubleshooting-pfsense-reboots-with-grafana/post
        Configuring the Nextcloud client for Android/post/configuring-nextcloud-client-for-android/post/configuring-nextcloud-client-for-android/index.mdfalsefalsetruefalse[]pageenpost/post/configuring-nextcloud-client-for-android/post
        2021 Montreal parkour jam/post/2021-montreal-parkour-jam/post/2021-montreal-parkour-jam/index.mdfalsefalsetruefalse[]pageenpost/post/2021-montreal-parkour-jam/post
        The floor is lava/post/the-floor-is-lava/post/the-floor-is-lava/index.mdfalsefalsetruefalse[]pageenpost/post/the-floor-is-lava/post
        How I organize my home directory/post/organize-home-directory/post/organize-home-directory/index.mdfalsefalsetruefalse[]pageenpost/post/organize-home-directory/post
        blog/tag/blog/falsetruefalsefalse[]termentags/tag/blog/tags
        Blog writing process/post/blog-writing-process/post/blog-writing-process/index.mdfalsefalsetruefalse[]pageenpost/post/blog-writing-process/post
        Blue truck æsthetics/post/blue-truck-aesthetics/post/blue-truck-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/blue-truck-aesthetics/post
        Cauliflower rice/post/making-cauliflower-rice/post/making-cauliflower-rice/index.mdfalsefalsetruefalse[]pageenpost/post/making-cauliflower-rice/post
        firefox/tag/firefox/falsetruefalsefalse[]termentags/tag/firefox/tags
        Firefox tabs analysis with Prometheus and Grafana/post/firefox-tabs-analysis/post/firefox-tabs-analysis/index.mdfalsefalsetruefalse[]pageenpost/post/firefox-tabs-analysis/post
        Automation, observability/post/automation-observability/post/automation-observability/index.mdfalsefalsetruefalse[]pageenpost/post/automation-observability/post
        Firefox tabs organized/post/organize-firefox-tabs/post/organize-firefox-tabs/index.mdfalsefalsetruefalse[]pageenpost/post/organize-firefox-tabs/post
        Nextcloud self-hosted architecture/post/nextcloud-self-hosted-architecture/post/nextcloud-self-hosted-architecture/index.mdfalsefalsetruefalse[]pageenpost/post/nextcloud-self-hosted-architecture/post
        boxes/tag/boxes/falsetruefalsefalse[]termentags/tag/boxes/tags
        Processing boxes/post/what-250-boxes-look-like/post/what-250-boxes-look-like/index.mdfalsefalsetruefalse[]pageenpost/post/what-250-boxes-look-like/post
        A place for every thing/post/a-place-for-every-thing/post/a-place-for-every-thing/index.mdfalsefalsetruefalse[]pageenpost/post/a-place-for-every-thing/post
        Thoughts on documentation/post/thoughts-on-documentation/post/thoughts-on-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/thoughts-on-documentation/post
        Ça va bien aller Montréal/post/ca-va-bien-aller/post/ca-va-bien-aller/index.mdfalsefalsetruefalse[]pageenpost/post/ca-va-bien-aller/post
        Vidéoconferences efficaces/post/videoconferences-efficaces/post/videoconferences-efficaces/index.mdfalsefalsetruefalse[]pageenpost/post/videoconferences-efficaces/post
        Capture notebook/post/capture-notebook/post/capture-notebook/index.mdfalsefalsetruefalse[]pageenpost/post/capture-notebook/post
        Daily Journal/post/daily-journal/post/daily-journal/index.mdfalsefalsetruefalse[]pageenpost/post/daily-journal/post
        Dragon hunting/post/dragon-hunting/post/dragon-hunting/index.mdfalsefalsetruefalse[]pageenpost/post/dragon-hunting/post
        Dreams journal/post/dreams-journal/post/dreams-journal/index.mdfalsefalsetruefalse[]pageenpost/post/dreams-journal/post
        File cabinet/post/file-cabinet/post/file-cabinet/index.mdfalsefalsetruefalse[]pageenpost/post/file-cabinet/post
        Free Associations/post/free-associations/post/free-associations/index.mdfalsefalsetruefalse[]pageenpost/post/free-associations/post
        GTD stack and project management/post/gtd-stack/post/gtd-stack/index.mdfalsefalsetruefalse[]pageenpost/post/gtd-stack/post
        Notebook/post/notebook/post/notebook/index.mdfalsefalsetruefalse[]pageenpost/post/notebook/post
        Personal stories journal/post/personal-stories/post/personal-stories/index.mdfalsefalsetruefalse[]pageenpost/post/personal-stories/post
        Project journal/post/project-journal/post/project-journal/index.mdfalsefalsetruefalse[]pageenpost/post/project-journal/post
        Étagère à souliers/post/etagere-a-souliers/post/etagere-a-souliers/index.mdfalsefalsetruefalse[]pageenpost/post/etagere-a-souliers/post
        2019 Blog engine migration/post/2019-blog-engine-migration/post/2019-blog-engine-migration/index.mdfalsefalsetruefalse[]pageenpost/post/2019-blog-engine-migration/post
        Debug/docs/meta/debug/docs/meta/debug.mdfalsefalsetruefalse[]pageendebug/docs/meta/debug/docs
        Clé publique/pgp/pgp.mdfalsefalsetruefalse[]pageenpage/pgp/
        Parkour in Stockholm/post/parkour-in-stockholm/post/parkour-in-stockholm/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-stockholm/post
        Parkour in LA/post/parkour-in-la/post/parkour-in-LA/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-la/post
        Supercharge your blackbox_exporter modules/post/supercharge-blackbox-exporter/post/supercharge-blackbox-exporter/index.mdfalsefalsetruefalse[]pageenpost/post/supercharge-blackbox-exporter/post
        Canari Cron Alert/post/canari-cron-alert/post/canari-cron-alert/index.mdfalsefalsetruefalse[]pageenpost/post/canari-cron-alert/post
        foss/tag/foss/falsetruefalsefalse[]termentags/tag/foss/tags
        Let's Encrypt on load balancers and reverse proxies with tls-sni-01/post/letsencrypt-tls-sni/post/letsencrypt-tls-sni/index.mdfalsefalsetruefalse[]pageenpost/post/letsencrypt-tls-sni/post
        prog/tag/prog/falsetruefalsefalse[]termentags/tag/prog/tags
        protocols/tag/protocols/falsetruefalsefalse[]termentags/tag/protocols/tags
        infosec/tag/infosec/falsetruefalsefalse[]termentags/tag/infosec/tags
        Introduction à Kerberos/post/presentation-kerberos/post/presentation-kerberos/index.mdfalsefalsetruefalse[]pageenpost/post/presentation-kerberos/post
        FreeGEM on OpenStack/post/freegem-on-openstack/post/freegem-on-openstack/index.mdfalsefalsetruefalse[]pageenpost/post/freegem-on-openstack/post
        openstack/tag/openstack/falsetruefalsefalse[]termentags/tag/openstack/tags
        Session d'entraînement solo/post/session-entrainement-solo-13-novembre-2016/post/session-entrainement-solo-13-novembre-2016/index.mdfalsefalsetruefalse[]pageenpost/post/session-entrainement-solo-13-novembre-2016/post
        Configure LDAP authentication in Nextcloud with FreeIPA/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post/configure-ldap-authentication-in-nextcloud-with-freeipa/index.mdfalsefalsetruefalse[]pageenpost/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post
        Let's Encrypt SSL on NearlyFreeSpeech.net with Ansible/post/ansible-letsencrypt-nfsn/post/ansible-letsencrypt-nfsn/index.mdfalsefalsetruefalse[]pageenpost/post/ansible-letsencrypt-nfsn/post
        Monitorer Nextcloud avec Zabbix/post/monitorer-nextcloud-avec-zabbix/post/monitorer-nextcloud-avec-zabbix/index.mdfalsefalsetruefalse[]pageenpost/post/monitorer-nextcloud-avec-zabbix/post
        créations/tag/creations/falsetruefalsefalse[]termentags/tag/creations/tags
        Liste de machines virtuelles dans mon réseau/post/liste-de-machines-virtuelles/post/liste-de-machines-virtuelles/index.mdfalsefalsetruefalse[]pageenpost/post/liste-de-machines-virtuelles/post
        Premier pull-request accepté!/post/premier-pull-request-accepte/post/premier-pull-request-accepte/index.mdfalsefalsetruefalse[]pageenpost/post/premier-pull-request-accepte/post
        New blog iteration/post/new-blog-iteration/post/new-blog-iteration/index.mdfalsefalsetruefalse[]pageenpost/post/new-blog-iteration/post
        OpenPGP key migration/post/openpgp-key-migration/post/openpgp-key-migration/index.mdfalsefalsetruefalse[]pageenpost/post/openpgp-key-migration/post
        Building man pages with Debian packaging scripts/post/building-man-pages-debian-packaging-scripts/post/building-man-pages-debian-packaging-scripts/index.mdfalsefalsetruefalse[]pageenpost/post/building-man-pages-debian-packaging-scripts/post
        Serialize a single task with Ansible/post/serialize-single-task-ansible/post/serialize-single-task-ansible/index.mdfalsefalsetruefalse[]pageenpost/post/serialize-single-task-ansible/post
        The Real Reason We Use Linux (repost)/post/real-reason-we-use-linux/post/real-reason-we-use-linux/index.mdfalsefalsetruefalse[]pageenpost/post/real-reason-we-use-linux/post
        Multiprocessing in Django apps/post/multiprocessing-django-apps/post/multiprocessing-django-apps/index.mdfalsefalsetruefalse[]pageenpost/post/multiprocessing-django-apps/post
        Managed switch case mod/post/managed-switch-case-mod/post/managed-switch-case-mod/index.mdfalsefalsetruefalse[]pageenpost/post/managed-switch-case-mod/post
        Home network rebuild project/post/home-network-rebuild-project/post/home-network-rebuild-project/index.mdfalsefalsetruefalse[]pageenpost/post/home-network-rebuild-project/post
        Let's Encrypt!/post/lets-encrypt/post/lets-encrypt/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt/post
        Compresser une image de disque/post/compresser-une-image-de-disque/post/compresser-une-image-de-disque/index.mdfalsefalsetruefalse[]pageenpost/post/compresser-une-image-de-disque/post
        Trigger a Javascript file drop event with Python and Selenium/post/trigger-javascript-drag-and-drop-event-python-and-/post/trigger-javascript-drag-and-drop-event-python-and-/index.mdfalsefalsetruefalse[]pageenpost/post/trigger-javascript-drag-and-drop-event-python-and-/post
        Système de rangement/post/boites/post/boites/index.mdfalsefalsetruefalse[]pageenpost/post/boites/post
        Position a CSS background like a block element/post/position-css-background-block-element/post/position-css-background-block-element/index.mdfalsefalsetruefalse[]pageenpost/post/position-css-background-block-element/post
        Parkour, coop mode/post/parkour-coop-mode/post/parkour-coop-mode/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-coop-mode/post
        Trespassing/post/trespassing/post/trespassing/index.mdfalsefalsetruefalse[]pageenpost/post/trespassing/post
        3 étagères et autres bricolages/post/3-etageres/post/3-etageres/index.mdfalsefalsetruefalse[]pageenpost/post/3-etageres/post
        Let's Encrypt, un projet prometteur!/post/lets-encrypt-un-projet-prometteur/post/lets-encrypt-un-projet-prometteur/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt-un-projet-prometteur/post
        Mirror provided by iWeb/post/mirror-provided-iweb/post/mirror-provided-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/mirror-provided-iweb/post
        `mailto:` URI handler in Python/post/mailto-uri-handler-python/post/mailto-uri-handler-python/index.mdfalsefalsetruefalse[]pageenpost/post/mailto-uri-handler-python/post
        Spinny Things/post/spinny-things/post/spinny-things/index.mdfalsefalsetruefalse[]pageenpost/post/spinny-things/post
        Calculate months elapsed between two dates in Python/post/calculate-months-between-two-dates-python/post/calculate-months-between-two-dates-python/index.mdfalsefalsetruefalse[]pageenpost/post/calculate-months-between-two-dates-python/post
        idées/tag/idees/falsetruefalsefalse[]termentags/tag/idees/tags
        Méthode 45° pour plier un tortilla/post/methode-45-pour-plier-un-tortilla/post/methode-45-pour-plier-un-tortilla/index.mdfalsefalsetruefalse[]pageenpost/post/methode-45-pour-plier-un-tortilla/post
        Dynos & Muscle-ups/post/dynos-muscle-ups/post/dynos-muscle-ups/index.mdfalsefalsetruefalse[]pageenpost/post/dynos-muscle-ups/post
        Crochets de suspension pour caddie d'épicerie/post/crochets-de-suspension-pour-caddie-depicerie/post/crochets-de-suspension-pour-caddie-depicerie/index.mdfalsefalsetruefalse[]pageenpost/post/crochets-de-suspension-pour-caddie-depicerie/post
        Pétition pour une enquête sur l’informatique au gouvernement du Québec/post/petition-pour-une-enquete-sur-linformatque/post/petition-pour-une-enquete-sur-linformatque/index.mdfalsefalsetruefalse[]pageenpost/post/petition-pour-une-enquete-sur-linformatque/post
        Topology of the Python stack/post/topology-python-stack/post/topology-python-stack/index.mdfalsefalsetruefalse[]pageenpost/post/topology-python-stack/post
        Séparation et sécurité des disques de sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/separation-et-securite-des-disques-de-sauvegarde/post
        Naviguer dans une page man/post/naviguer-dans-une-page-man/post/naviguer-dans-une-page-man/index.mdfalsefalsetruefalse[]pageenpost/post/naviguer-dans-une-page-man/post
        Antenne fractale/post/antenne-fractale/post/antenne-fractale/index.mdfalsefalsetruefalse[]pageenpost/post/antenne-fractale/post
        Vidéos iWeb/post/videos-iweb/post/videos-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/videos-iweb/post
        Nouvel emploi chez iWeb/post/nouvel-emploi-chez-iweb/post/nouvel-emploi-chez-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/nouvel-emploi-chez-iweb/post
        Migrer ou réparer un système GNU/Linux/post/migrer-ou-reparer-un-systeme-gnulinux/post/migrer-ou-reparer-un-systeme-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/migrer-ou-reparer-un-systeme-gnulinux/post
        Bépo pour l'amour du français/post/bepo-pour-lamour-du-francais/post/bepo-pour-lamour-du-francais/index.mdfalsefalsetruefalse[]pageenpost/post/bepo-pour-lamour-du-francais/post
        Liens pour apprendre GNU/Linux, Python et Bash/post/liens-pour-apprendre-gnulinux-python-et-bash/post/liens-pour-apprendre-gnulinux-python-et-bash/index.mdfalsefalsetruefalse[]pageenpost/post/liens-pour-apprendre-gnulinux-python-et-bash/post
        Unifont as a fallback in rxvt-unicode/post/unifont-and-rxvt-unicode/post/unifont-and-rxvt-unicode/index.mdfalsefalsetruefalse[]pageenpost/post/unifont-and-rxvt-unicode/post
        Le Spot, section orange/post/le-spot-section-orange/post/le-spot-section-orange/index.mdfalsefalsetruefalse[]pageenpost/post/le-spot-section-orange/post
        Marque-quadrant/post/marque-quadrant/post/marque-quadrant/index.mdfalsefalsetruefalse[]pageenpost/post/marque-quadrant/post
        Support pour dual-screen/post/support-pour-dual-screen/post/support-pour-dual-screen/index.mdfalsefalsetruefalse[]pageenpost/post/support-pour-dual-screen/post
        Appréciation de la part de GNU dans GNU/Linux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post
        Colle chaude et roulettes d'imprimante/post/colle-chaude-et-roulettes-dimprimante/post/colle-chaude-et-roulettes-dimprimante/index.mdfalsefalsetruefalse[]pageenpost/post/colle-chaude-et-roulettes-dimprimante/post
        Richard Stallman talk at TEDxGE2014/post/richard-stallman-talk-tedxge2014/post/richard-stallman-talk-tedxge2014/index.mdfalsefalsetruefalse[]pageenpost/post/richard-stallman-talk-tedxge2014/post
        My girlfriend's room/post/my-girlfriends-room/post/my-girlfriends-room/index.mdfalsefalsetruefalse[]pageenpost/post/my-girlfriends-room/post
        Litière à chats efficace et sans tracas/post/litiere-chats-efficace-et-sans-tracas/post/litiere-chats-efficace-et-sans-tracas/index.mdfalsefalsetruefalse[]pageenpost/post/litiere-chats-efficace-et-sans-tracas/post
        Nouveau blogue!/post/nouveau-blogue/post/nouveau-blogue/index.mdfalsefalsetruefalse[]pageenpost/post/nouveau-blogue/post
        JILL avec FACIL/post/jill-avec-facil/post/jill-avec-facil/index.mdfalsefalsetruefalse[]pageenpost/post/jill-avec-facil/post
        City TV Report on The Spot/post/city-tv-report-the-spot/post/city-tv-report-the-spot/index.mdfalsefalsetruefalse[]pageenpost/post/city-tv-report-the-spot/post
        Safety tactics with `rm`/post/safety-tactics-rm/post/safety-tactics-rm/index.mdfalsefalsetruefalse[]pageenpost/post/safety-tactics-rm/post
        Tablettes de cuisine/post/tablettes-de-cuisine/post/tablettes-de-cuisine/index.mdfalsefalsetruefalse[]pageenpost/post/tablettes-de-cuisine/post
        Sending email with openssl and smtp.gmail.com/post/sending-email-openssl-and-smtpgmailcom/post/sending-email-openssl-and-smtpgmailcom/index.mdfalsefalsetruefalse[]pageenpost/post/sending-email-openssl-and-smtpgmailcom/post
        Aiguisage d’une raboteuse/post/aiguisage-dune-raboteuse/post/aiguisage-dune-raboteuse/index.mdfalsefalsetruefalse[]pageenpost/post/aiguisage-dune-raboteuse/post
        Jam de parkour pluvieux/post/jam-de-parkour-pluvieux/post/jam-de-parkour-pluvieux/index.mdfalsefalsetruefalse[]pageenpost/post/jam-de-parkour-pluvieux/post
        Berserk/post/berserk/post/berserk/index.mdfalsefalsetruefalse[]pageenpost/post/berserk/post
        Un bout de tuyau dans le mur/post/un-bout-de-tuyau-dans-le-mur/post/un-bout-de-tuyau-dans-le-mur/index.mdfalsefalsetruefalse[]pageenpost/post/un-bout-de-tuyau-dans-le-mur/post
        Fontaines de couleur/post/fontaines-de-couleur/post/fontaines-de-couleur/index.mdfalsefalsetruefalse[]pageenpost/post/fontaines-de-couleur/post
        Vidéo de parkour : 15 juin 2013/post/video-de-parkour-15-juin-2013/post/video-de-parkour-15-juin-2013/index.mdfalsefalsetruefalse[]pageenpost/post/video-de-parkour-15-juin-2013/post
        Filmographie sur le parkour/post/filmographie-sur-le-parkour/post/filmographie-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/filmographie-sur-le-parkour/post
        Boîtier d'ordinateur en bois/post/boitier-ordinateur-en-bois/post/boitier-ordinateur-en-bois/index.mdfalsefalsetruefalse[]pageenpost/post/boitier-ordinateur-en-bois/post
        Play a music CD with mplayer without skipping/post/play-music-cd-mplayer-without-skipping/post/play-music-cd-mplayer-without-skipping/index.mdfalsefalsetruefalse[]pageenpost/post/play-music-cd-mplayer-without-skipping/post
        Sac anti-statique fait maison/post/sac-anti-statique-fait-maison/post/sac-anti-statique-fait-maison/index.mdfalsefalsetruefalse[]pageenpost/post/sac-anti-statique-fait-maison/post
        Parkour hivernal au Stade olympique/post/parkour-hivernal-au-stade-olympique/post/parkour-hivernal-au-stade-olympique/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-hivernal-au-stade-olympique/post
        Nettoyage de la cartouche de toner/post/nettoyage-de-la-cartouche-de-toner/post/nettoyage-de-la-cartouche-de-toner/index.mdfalsefalsetruefalse[]pageenpost/post/nettoyage-de-la-cartouche-de-toner/post
        rsync Backups and Directory Renaming, a Solution/post/rsync-backups-and-directory-renaming-solution/post/rsync-backups-and-directory-renaming-solution/index.mdfalsefalsetruefalse[]pageenpost/post/rsync-backups-and-directory-renaming-solution/post
        Le calendrier amélioré/post/le-calendrier-ameliore/post/le-calendrier-ameliore/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier-ameliore/post
        Calcul du pourboire/post/calcul-du-pourboire/post/calcul-du-pourboire/index.mdfalsefalsetruefalse[]pageenpost/post/calcul-du-pourboire/post
        Tablette à barbecue/post/tablette-barbecue/post/tablette-barbecue/index.mdfalsefalsetruefalse[]pageenpost/post/tablette-barbecue/post
        Pochette de CD en papier plié/post/paper-cd-case/post/paper-cd-case/index.mdfalsefalsetruefalse[]pageenpost/post/paper-cd-case/post
        Joke de banquier/post/joke-de-banquier/post/joke-de-banquier/index.mdfalsefalsetruefalse[]pageenpost/post/joke-de-banquier/post
        Exercisse de restauration d'une sauvegarde/post/exercice-de-restauration-dune-sauvegarde/post/exercice-de-restauration-dune-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/exercice-de-restauration-dune-sauvegarde/post
        Image Collection Organizing Helper/post/image-collection-organizing-helper/post/image-collection-organizing-helper/index.mdfalsefalsetruefalse[]pageenpost/post/image-collection-organizing-helper/post
        Le cahier Moleskine a 31 lignes/post/le-cahier-moleskine-31-lignes/post/le-cahier-moleskine-31-lignes/index.mdfalsefalsetruefalse[]pageenpost/post/le-cahier-moleskine-31-lignes/post
        Image sorting helper script/post/image-sorting-helper-script/post/image-sorting-helper-script/index.mdfalsefalsetruefalse[]pageenpost/post/image-sorting-helper-script/post
        Monitor Python subprocess' output streams in real-time/post/monitor-python-subprocess-output-streams-real-time/post/monitor-python-subprocess-output-streams-real-time/index.mdfalsefalsetruefalse[]pageenpost/post/monitor-python-subprocess-output-streams-real-time/post
        TV5, Hors série: Traceurs/post/tv5-hors-serie-traceurs/post/tv5-hors-serie-traceurs/index.mdfalsefalsetruefalse[]pageenpost/post/tv5-hors-serie-traceurs/post
        Reportage sur le parkour/post/reportage-sur-le-parkour/post/reportage-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/reportage-sur-le-parkour/post
        How I organize my digital documents/post/how-i-organize-my-digital-documents/post/how-i-organize-my-digital-documents/index.mdfalsefalsetruefalse[]pageenpost/post/how-i-organize-my-digital-documents/post
        Rencontre du 2009-04-25/post/rencontre-du-2009-04-25/post/rencontre-du-2009-04-25/index.mdfalsefalsetruefalse[]pageenpost/post/rencontre-du-2009-04-25/post
        Salto arrière au Stade/post/salto-arriere-au-stade/post/salto-arriere-au-stade/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere-au-stade/post
        Salto arrière/post/salto-arriere/post/salto-arriere/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere/post
        Le calendrier/post/le-calendrier/post/le-calendrier/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier/post
        Publication_types/publication_types/falsetruefalsefalse[]taxonomyenpublication_types/publication_types/publication_types

        .Site.AllPages

        .Title.RelPermalink.File.Path.IsHome.IsNode.IsPage.IsTranslated.Keywords.Kind.Lang.Type.RelPermalink.Section
        Metadocumentation/docs/meta/docs/meta/_index.mdfalsetruefalsefalse[]sectionenbook/docs/meta/docs
        Styles/docs/meta/styles/docs/meta/styles.mdfalsefalsetruefalse[]pageenbook/docs/meta/styles/docs
        Alexandre de Verteuil/truetruefalsefalse[]homeenpage/
        Categories/categories/falsetruefalsefalse[]taxonomyencategories/categories/categories
        March 2024 in Review/post/2024-03-month-in-review/post/2024-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-03-month-in-review/post
        Month in review/category/month-in-review/falsetruefalsefalse[]termencategories/category/month-in-review/categories
        Personnel/category/personnel/falsetruefalsefalse[]termencategories/category/personnel/categories
        Posts/post/post/_index.mdfalsetruefalsefalse[]sectionenpost/post/post
        Things to do in Montreal/post/things-to-do-in-montreal/post/things-to-do-in-montreal/index.mdfalsefalsetruefalse[]pageenpost/post/things-to-do-in-montreal/post
        February 2024 in review/post/2024-02-month-in-review/post/2024-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-02-month-in-review/post
        January 2024 in review/post/2024-01-month-in-review/post/2024-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2024-01-month-in-review/post
        December 2023 in review/post/2023-12-month-in-review/post/2023-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-12-month-in-review/post
        Mumbai 2023/post/mumbai-2023/post/mumbai-2023/index.mdfalsefalsetruefalse[]pageenpost/post/mumbai-2023/post
        November 2023 in review/post/2023-11-month-in-review/post/2023-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-11-month-in-review/post
        documentation/tag/documentation/falsetruefalsefalse[]termentags/tag/documentation/tags
        Documentation/category/documentation/falsetruefalsefalse[]termencategories/category/documentation/categories
        Tags/tags/falsetruefalsefalse[]taxonomyentags/tags/tags
        The internal and external structure of working procedures/post/internal-and-external-structure-of-documentation/post/internal-and-external-structure-of-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/internal-and-external-structure-of-documentation/post
        October 2023 in review/post/2023-10-month-in-review/post/2023-10-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-10-month-in-review/post
        September 2023 in review/post/2023-09-month-in-review/post/2023-09-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-09-month-in-review/post
        backups/tag/backups/falsetruefalsefalse[]termentags/tag/backups/tags
        Borg backup server on TrueNAS SCALE/post/borg-backup-server-on-truenas-scale/post/borg-backup-server-on-truenas-scale/index.mdfalsefalsetruefalse[]pageenpost/post/borg-backup-server-on-truenas-scale/post
        Informatique/category/informatique/falsetruefalsefalse[]termencategories/category/informatique/categories
        truenas/tag/truenas/falsetruefalsefalse[]termentags/tag/truenas/tags
        August 2023 in review/post/2023-08-month-in-review/post/2023-08-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-08-month-in-review/post
        July 2023 in review/post/2023-07-month-in-review/post/2023-07-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-07-month-in-review/post
        June 2023 in review/post/2023-06-month-in-review/post/2023-06-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-06-month-in-review/post
        May 2023 in review/post/2023-05-month-in-review/post/2023-05-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-05-month-in-review/post
        Art/category/art/falsetruefalsefalse[]termencategories/category/art/categories
        Glass window poetry/post/glass-window-poetry/post/glass-window-poetry/index.mdfalsefalsetruefalse[]pageenpost/post/glass-window-poetry/post
        Debugging process_exporter group naming configuration/post/debugging-process-exporter-group-naming-configuration/post/debugging-process-exporter-group-naming-configuration/index.mdfalsefalsetruefalse[]pageenpost/post/debugging-process-exporter-group-naming-configuration/post
        prometheus/tag/prometheus/falsetruefalsefalse[]termentags/tag/prometheus/tags
        April 2023 in review/post/2023-04-month-in-review/post/2023-04-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-04-month-in-review/post
        March 2023 in review/post/2023-03-month-in-review/post/2023-03-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-03-month-in-review/post
        My hobbies/post/my-hobbies/post/my-hobbies/index.mdfalsefalsetruefalse[]pageenpost/post/my-hobbies/post
        Santa Fe/category/santa-fe/falsetruefalsefalse[]termencategories/category/santa-fe/categories
        Santa Fe wildlife/post/santa-fe-wildlife/post/santa-fe-wildlife/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-wildlife/post
        Santa Fe aesthetics/post/santa-fe-aesthetics/post/santa-fe-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-aesthetics/post
        February 2023 in review/post/2023-02-month-in-review/post/2023-02-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-02-month-in-review/post
        To do this again/post/to-do-this-again/post/to-do-this-again/index.mdfalsefalsetruefalse[]pageenpost/post/to-do-this-again/post
        January 2023 in review/post/2023-01-month-in-review/post/2023-01-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2023-01-month-in-review/post
        December 2022 in review/post/2022-12-month-in-review/post/2022-12-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-12-month-in-review/post
        Santa Fe Arrival/post/santa-fe-arrival/post/santa-fe-arrival/index.mdfalsefalsetruefalse[]pageenpost/post/santa-fe-arrival/post
        November 2022 in review/post/2022-11-month-in-review/post/2022-11-month-in-review/index.mdfalsefalsetruefalse[]pageenpost/post/2022-11-month-in-review/post
        Solving Mom's stuck freezer drawer puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/post/solving-moms-stuck-freezer-drawer-puzzle/index.mdfalsefalsetruefalse[]pageenpost/post/solving-moms-stuck-freezer-drawer-puzzle/post
        freenas/tag/freenas/falsetruefalsefalse[]termentags/tag/freenas/tags
        grafana/tag/grafana/falsetruefalsefalse[]termentags/tag/grafana/tags
        loki/tag/loki/falsetruefalsefalse[]termentags/tag/loki/tags
        monitoring/tag/monitoring/falsetruefalsefalse[]termentags/tag/monitoring/tags
        Monitoring TrueNAS With Prometheus and Loki/post/monitoring-truenas-with-prometheus-and-loki/post/monitoring-truenas-with-prometheus-and-loki/index.mdfalsefalsetruefalse[]pageenpost/post/monitoring-truenas-with-prometheus-and-loki/post
        android/tag/android/falsetruefalsefalse[]termentags/tag/android/tags
        nextcloud/tag/nextcloud/falsetruefalsefalse[]termentags/tag/nextcloud/tags
        Organization/category/organization/falsetruefalsefalse[]termencategories/category/organization/categories
        organizing/tag/organizing/falsetruefalsefalse[]termentags/tag/organizing/tags
        Synchronizing files across phone, laptop and NAS with Nextcloud and Syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/index.mdfalsefalsetruefalse[]pageenpost/post/synchronizing-files-across-phone-laptop-nas-with-nextcloud-and-syncthing/post
        August 2022 trip to Chicago/post/chicago-2022/post/chicago-2022/index.mdfalsefalsetruefalse[]pageenpost/post/chicago-2022/post
        voyage/tag/voyage/falsetruefalsefalse[]termentags/tag/voyage/tags
        Using Rsyslog and Promtail to relay syslog messages to Loki/post/syslog-relay-for-loki/post/syslog-relay-for-loki/index.mdfalsefalsetruefalse[]pageenpost/post/syslog-relay-for-loki/post
        Fixion/post/fixion/post/fixion/index.mdfalsefalsetruefalse[]pageenpost/post/fixion/post
        selfhosting/tag/selfhosting/falsetruefalsefalse[]termentags/tag/selfhosting/tags
        poem/tag/poem/falsetruefalsefalse[]termentags/tag/poem/tags
        When it rains in the bowl/post/when-it-rains-in-the-bowl/post/when-it-rains-in-the-bowl/index.mdfalsefalsetruefalse[]pageenpost/post/when-it-rains-in-the-bowl/post
        authors/_index.mdfalsetruefalsefalse[]taxonomyenauthorsauthors
        Addon game with reverse/post/addon-game-with-reverse/post/addon-game-with-reverse/index.mdfalsefalsetruefalse[]pageenpost/post/addon-game-with-reverse/post
        Alexandre de Verteuilauthors/admin/_index.mdfalsetruefalsefalse[]termenauthorsauthors
        parkour/tag/parkour/falsetruefalsefalse[]termentags/tag/parkour/tags
        Parkour/category/parkour/falsetruefalsefalse[]termencategories/category/parkour/categories
        vidéo/tag/video/falsetruefalsefalse[]termentags/tag/video/tags
        Pourquoi Pas art exhibit/post/pourquoi-pas-exhibit/post/pourquoi-pas-exhibit/index.mdfalsefalsetruefalse[]pageenpost/post/pourquoi-pas-exhibit/post
        Visualize Matomo metrics in Grafana/post/visualize-matomo-metrics-in-grafana/post/visualize-matomo-metrics-in-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/visualize-matomo-metrics-in-grafana/post
        sysadmin/tag/sysadmin/falsetruefalsefalse[]termentags/tag/sysadmin/tags
        Using TrueNAS as an iSCSI storage backend for libvirt/post/truenas-iscsi-storage-backend-for-libvirt/post/truenas-iscsi-storage-backend-for-libvirt/index.mdfalsefalsetruefalse[]pageenpost/post/truenas-iscsi-storage-backend-for-libvirt/post
        Venus/post/venus/post/venus/index.mdfalsefalsetruefalse[]pageenpost/post/venus/post
        A June walk on Duluth/post/a-june-walk-on-duluth/post/a-june-walk-on-duluth/index.mdfalsefalsetruefalse[]pageenpost/post/a-june-walk-on-duluth/post
        Up nor down/post/up-nor-down/post/up-nor-down/index.mdfalsefalsetruefalse[]pageenpost/post/up-nor-down/post
        Becoming a Solutions Architect/post/becoming-a-solutions-architect/post/becoming-a-solutions-architect/index.mdfalsefalsetruefalse[]pageenpost/post/becoming-a-solutions-architect/post
        career/tag/career/falsetruefalsefalse[]termentags/tag/career/tags
        Workspace æsthetics/post/workspace-aesthetics/post/workspace-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/workspace-aesthetics/post
        Cooking/category/cooking/falsetruefalsefalse[]termencategories/category/cooking/categories
        Food storage system/post/food-storage-system/post/food-storage-system/index.mdfalsefalsetruefalse[]pageenpost/post/food-storage-system/post
        home/tag/home/falsetruefalsefalse[]termentags/tag/home/tags
        jars/tag/jars/falsetruefalsefalse[]termentags/tag/jars/tags
        Journaling table of contents/post/journaling-toc/post/journaling-toc/index.mdfalsefalsetruefalse[]pageenpost/post/journaling-toc/post
        Summer/post/summer/post/summer/index.mdfalsefalsetruefalse[]pageenpost/post/summer/post
        How to become a systems administrator/post/how-to-become-a-systems-administrator/post/how-to-become-a-systems-administrator/index.mdfalsefalsetruefalse[]pageenpost/post/how-to-become-a-systems-administrator/post
        learning/tag/learning/falsetruefalsefalse[]termentags/tag/learning/tags
        Informal learning with podcasts/post/informal-learning-with-podcasts/post/informal-learning-with-podcasts/index.mdfalsefalsetruefalse[]pageenpost/post/informal-learning-with-podcasts/post
        journaling/tag/journaling/falsetruefalsefalse[]termentags/tag/journaling/tags
        Writing instruments/post/writing-instruments/post/writing-instruments/index.mdfalsefalsetruefalse[]pageenpost/post/writing-instruments/post
        Linking is better than integrating/post/linking-gt-integrating/post/linking-gt-integrating/index.mdfalsefalsetruefalse[]pageenpost/post/linking-gt-integrating/post
        House cleaning/post/house-cleaning/post/house-cleaning/index.mdfalsefalsetruefalse[]pageenpost/post/house-cleaning/post
        kitchen/tag/kitchen/falsetruefalsefalse[]termentags/tag/kitchen/tags
        Dates/docs/meta/dates/docs/meta/dates/index.mdfalsefalsetruefalse[]pageenbook/docs/meta/dates/docs
        Documentation/docs/docs/_index.mdfalsetruefalsefalse[]sectionendocs/docs/docs
        création/tag/creation/falsetruefalsefalse[]termentags/tag/creation/tags
        Magnetic knife holder/post/magnetic-knife-holder/post/magnetic-knife-holder/index.mdfalsefalsetruefalse[]pageenpost/post/magnetic-knife-holder/post
        Troubleshooting pfSense reboots with Grafana/post/troubleshooting-pfsense-reboots-with-grafana/post/troubleshooting-pfsense-reboots-with-grafana/index.mdfalsefalsetruefalse[]pageenpost/post/troubleshooting-pfsense-reboots-with-grafana/post
        Configuring the Nextcloud client for Android/post/configuring-nextcloud-client-for-android/post/configuring-nextcloud-client-for-android/index.mdfalsefalsetruefalse[]pageenpost/post/configuring-nextcloud-client-for-android/post
        2021 Montreal parkour jam/post/2021-montreal-parkour-jam/post/2021-montreal-parkour-jam/index.mdfalsefalsetruefalse[]pageenpost/post/2021-montreal-parkour-jam/post
        The floor is lava/post/the-floor-is-lava/post/the-floor-is-lava/index.mdfalsefalsetruefalse[]pageenpost/post/the-floor-is-lava/post
        How I organize my home directory/post/organize-home-directory/post/organize-home-directory/index.mdfalsefalsetruefalse[]pageenpost/post/organize-home-directory/post
        blog/tag/blog/falsetruefalsefalse[]termentags/tag/blog/tags
        Blog writing process/post/blog-writing-process/post/blog-writing-process/index.mdfalsefalsetruefalse[]pageenpost/post/blog-writing-process/post
        Blue truck æsthetics/post/blue-truck-aesthetics/post/blue-truck-aesthetics/index.mdfalsefalsetruefalse[]pageenpost/post/blue-truck-aesthetics/post
        Cauliflower rice/post/making-cauliflower-rice/post/making-cauliflower-rice/index.mdfalsefalsetruefalse[]pageenpost/post/making-cauliflower-rice/post
        firefox/tag/firefox/falsetruefalsefalse[]termentags/tag/firefox/tags
        Firefox tabs analysis with Prometheus and Grafana/post/firefox-tabs-analysis/post/firefox-tabs-analysis/index.mdfalsefalsetruefalse[]pageenpost/post/firefox-tabs-analysis/post
        Automation, observability/post/automation-observability/post/automation-observability/index.mdfalsefalsetruefalse[]pageenpost/post/automation-observability/post
        Firefox tabs organized/post/organize-firefox-tabs/post/organize-firefox-tabs/index.mdfalsefalsetruefalse[]pageenpost/post/organize-firefox-tabs/post
        Nextcloud self-hosted architecture/post/nextcloud-self-hosted-architecture/post/nextcloud-self-hosted-architecture/index.mdfalsefalsetruefalse[]pageenpost/post/nextcloud-self-hosted-architecture/post
        boxes/tag/boxes/falsetruefalsefalse[]termentags/tag/boxes/tags
        Processing boxes/post/what-250-boxes-look-like/post/what-250-boxes-look-like/index.mdfalsefalsetruefalse[]pageenpost/post/what-250-boxes-look-like/post
        A place for every thing/post/a-place-for-every-thing/post/a-place-for-every-thing/index.mdfalsefalsetruefalse[]pageenpost/post/a-place-for-every-thing/post
        Thoughts on documentation/post/thoughts-on-documentation/post/thoughts-on-documentation/index.mdfalsefalsetruefalse[]pageenpost/post/thoughts-on-documentation/post
        Ça va bien aller Montréal/post/ca-va-bien-aller/post/ca-va-bien-aller/index.mdfalsefalsetruefalse[]pageenpost/post/ca-va-bien-aller/post
        Vidéoconferences efficaces/post/videoconferences-efficaces/post/videoconferences-efficaces/index.mdfalsefalsetruefalse[]pageenpost/post/videoconferences-efficaces/post
        Capture notebook/post/capture-notebook/post/capture-notebook/index.mdfalsefalsetruefalse[]pageenpost/post/capture-notebook/post
        Daily Journal/post/daily-journal/post/daily-journal/index.mdfalsefalsetruefalse[]pageenpost/post/daily-journal/post
        Dragon hunting/post/dragon-hunting/post/dragon-hunting/index.mdfalsefalsetruefalse[]pageenpost/post/dragon-hunting/post
        Dreams journal/post/dreams-journal/post/dreams-journal/index.mdfalsefalsetruefalse[]pageenpost/post/dreams-journal/post
        File cabinet/post/file-cabinet/post/file-cabinet/index.mdfalsefalsetruefalse[]pageenpost/post/file-cabinet/post
        Free Associations/post/free-associations/post/free-associations/index.mdfalsefalsetruefalse[]pageenpost/post/free-associations/post
        GTD stack and project management/post/gtd-stack/post/gtd-stack/index.mdfalsefalsetruefalse[]pageenpost/post/gtd-stack/post
        Notebook/post/notebook/post/notebook/index.mdfalsefalsetruefalse[]pageenpost/post/notebook/post
        Personal stories journal/post/personal-stories/post/personal-stories/index.mdfalsefalsetruefalse[]pageenpost/post/personal-stories/post
        Project journal/post/project-journal/post/project-journal/index.mdfalsefalsetruefalse[]pageenpost/post/project-journal/post
        Étagère à souliers/post/etagere-a-souliers/post/etagere-a-souliers/index.mdfalsefalsetruefalse[]pageenpost/post/etagere-a-souliers/post
        2019 Blog engine migration/post/2019-blog-engine-migration/post/2019-blog-engine-migration/index.mdfalsefalsetruefalse[]pageenpost/post/2019-blog-engine-migration/post
        Debug/docs/meta/debug/docs/meta/debug.mdfalsefalsetruefalse[]pageendebug/docs/meta/debug/docs
        Clé publique/pgp/pgp.mdfalsefalsetruefalse[]pageenpage/pgp/
        Parkour in Stockholm/post/parkour-in-stockholm/post/parkour-in-stockholm/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-stockholm/post
        Parkour in LA/post/parkour-in-la/post/parkour-in-LA/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-in-la/post
        Supercharge your blackbox_exporter modules/post/supercharge-blackbox-exporter/post/supercharge-blackbox-exporter/index.mdfalsefalsetruefalse[]pageenpost/post/supercharge-blackbox-exporter/post
        Canari Cron Alert/post/canari-cron-alert/post/canari-cron-alert/index.mdfalsefalsetruefalse[]pageenpost/post/canari-cron-alert/post
        foss/tag/foss/falsetruefalsefalse[]termentags/tag/foss/tags
        Let's Encrypt on load balancers and reverse proxies with tls-sni-01/post/letsencrypt-tls-sni/post/letsencrypt-tls-sni/index.mdfalsefalsetruefalse[]pageenpost/post/letsencrypt-tls-sni/post
        prog/tag/prog/falsetruefalsefalse[]termentags/tag/prog/tags
        protocols/tag/protocols/falsetruefalsefalse[]termentags/tag/protocols/tags
        infosec/tag/infosec/falsetruefalsefalse[]termentags/tag/infosec/tags
        Introduction à Kerberos/post/presentation-kerberos/post/presentation-kerberos/index.mdfalsefalsetruefalse[]pageenpost/post/presentation-kerberos/post
        FreeGEM on OpenStack/post/freegem-on-openstack/post/freegem-on-openstack/index.mdfalsefalsetruefalse[]pageenpost/post/freegem-on-openstack/post
        openstack/tag/openstack/falsetruefalsefalse[]termentags/tag/openstack/tags
        Session d'entraînement solo/post/session-entrainement-solo-13-novembre-2016/post/session-entrainement-solo-13-novembre-2016/index.mdfalsefalsetruefalse[]pageenpost/post/session-entrainement-solo-13-novembre-2016/post
        Configure LDAP authentication in Nextcloud with FreeIPA/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post/configure-ldap-authentication-in-nextcloud-with-freeipa/index.mdfalsefalsetruefalse[]pageenpost/post/configure-ldap-authentication-in-nextcloud-with-freeipa/post
        Let's Encrypt SSL on NearlyFreeSpeech.net with Ansible/post/ansible-letsencrypt-nfsn/post/ansible-letsencrypt-nfsn/index.mdfalsefalsetruefalse[]pageenpost/post/ansible-letsencrypt-nfsn/post
        Monitorer Nextcloud avec Zabbix/post/monitorer-nextcloud-avec-zabbix/post/monitorer-nextcloud-avec-zabbix/index.mdfalsefalsetruefalse[]pageenpost/post/monitorer-nextcloud-avec-zabbix/post
        créations/tag/creations/falsetruefalsefalse[]termentags/tag/creations/tags
        Liste de machines virtuelles dans mon réseau/post/liste-de-machines-virtuelles/post/liste-de-machines-virtuelles/index.mdfalsefalsetruefalse[]pageenpost/post/liste-de-machines-virtuelles/post
        Premier pull-request accepté!/post/premier-pull-request-accepte/post/premier-pull-request-accepte/index.mdfalsefalsetruefalse[]pageenpost/post/premier-pull-request-accepte/post
        New blog iteration/post/new-blog-iteration/post/new-blog-iteration/index.mdfalsefalsetruefalse[]pageenpost/post/new-blog-iteration/post
        OpenPGP key migration/post/openpgp-key-migration/post/openpgp-key-migration/index.mdfalsefalsetruefalse[]pageenpost/post/openpgp-key-migration/post
        Building man pages with Debian packaging scripts/post/building-man-pages-debian-packaging-scripts/post/building-man-pages-debian-packaging-scripts/index.mdfalsefalsetruefalse[]pageenpost/post/building-man-pages-debian-packaging-scripts/post
        Serialize a single task with Ansible/post/serialize-single-task-ansible/post/serialize-single-task-ansible/index.mdfalsefalsetruefalse[]pageenpost/post/serialize-single-task-ansible/post
        The Real Reason We Use Linux (repost)/post/real-reason-we-use-linux/post/real-reason-we-use-linux/index.mdfalsefalsetruefalse[]pageenpost/post/real-reason-we-use-linux/post
        Multiprocessing in Django apps/post/multiprocessing-django-apps/post/multiprocessing-django-apps/index.mdfalsefalsetruefalse[]pageenpost/post/multiprocessing-django-apps/post
        Managed switch case mod/post/managed-switch-case-mod/post/managed-switch-case-mod/index.mdfalsefalsetruefalse[]pageenpost/post/managed-switch-case-mod/post
        Home network rebuild project/post/home-network-rebuild-project/post/home-network-rebuild-project/index.mdfalsefalsetruefalse[]pageenpost/post/home-network-rebuild-project/post
        Let's Encrypt!/post/lets-encrypt/post/lets-encrypt/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt/post
        Compresser une image de disque/post/compresser-une-image-de-disque/post/compresser-une-image-de-disque/index.mdfalsefalsetruefalse[]pageenpost/post/compresser-une-image-de-disque/post
        Trigger a Javascript file drop event with Python and Selenium/post/trigger-javascript-drag-and-drop-event-python-and-/post/trigger-javascript-drag-and-drop-event-python-and-/index.mdfalsefalsetruefalse[]pageenpost/post/trigger-javascript-drag-and-drop-event-python-and-/post
        Système de rangement/post/boites/post/boites/index.mdfalsefalsetruefalse[]pageenpost/post/boites/post
        Position a CSS background like a block element/post/position-css-background-block-element/post/position-css-background-block-element/index.mdfalsefalsetruefalse[]pageenpost/post/position-css-background-block-element/post
        Parkour, coop mode/post/parkour-coop-mode/post/parkour-coop-mode/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-coop-mode/post
        Trespassing/post/trespassing/post/trespassing/index.mdfalsefalsetruefalse[]pageenpost/post/trespassing/post
        3 étagères et autres bricolages/post/3-etageres/post/3-etageres/index.mdfalsefalsetruefalse[]pageenpost/post/3-etageres/post
        Let's Encrypt, un projet prometteur!/post/lets-encrypt-un-projet-prometteur/post/lets-encrypt-un-projet-prometteur/index.mdfalsefalsetruefalse[]pageenpost/post/lets-encrypt-un-projet-prometteur/post
        Mirror provided by iWeb/post/mirror-provided-iweb/post/mirror-provided-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/mirror-provided-iweb/post
        `mailto:` URI handler in Python/post/mailto-uri-handler-python/post/mailto-uri-handler-python/index.mdfalsefalsetruefalse[]pageenpost/post/mailto-uri-handler-python/post
        Spinny Things/post/spinny-things/post/spinny-things/index.mdfalsefalsetruefalse[]pageenpost/post/spinny-things/post
        Calculate months elapsed between two dates in Python/post/calculate-months-between-two-dates-python/post/calculate-months-between-two-dates-python/index.mdfalsefalsetruefalse[]pageenpost/post/calculate-months-between-two-dates-python/post
        idées/tag/idees/falsetruefalsefalse[]termentags/tag/idees/tags
        Méthode 45° pour plier un tortilla/post/methode-45-pour-plier-un-tortilla/post/methode-45-pour-plier-un-tortilla/index.mdfalsefalsetruefalse[]pageenpost/post/methode-45-pour-plier-un-tortilla/post
        Dynos & Muscle-ups/post/dynos-muscle-ups/post/dynos-muscle-ups/index.mdfalsefalsetruefalse[]pageenpost/post/dynos-muscle-ups/post
        Crochets de suspension pour caddie d'épicerie/post/crochets-de-suspension-pour-caddie-depicerie/post/crochets-de-suspension-pour-caddie-depicerie/index.mdfalsefalsetruefalse[]pageenpost/post/crochets-de-suspension-pour-caddie-depicerie/post
        Pétition pour une enquête sur l’informatique au gouvernement du Québec/post/petition-pour-une-enquete-sur-linformatque/post/petition-pour-une-enquete-sur-linformatque/index.mdfalsefalsetruefalse[]pageenpost/post/petition-pour-une-enquete-sur-linformatque/post
        Topology of the Python stack/post/topology-python-stack/post/topology-python-stack/index.mdfalsefalsetruefalse[]pageenpost/post/topology-python-stack/post
        Séparation et sécurité des disques de sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/post/separation-et-securite-des-disques-de-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/separation-et-securite-des-disques-de-sauvegarde/post
        Naviguer dans une page man/post/naviguer-dans-une-page-man/post/naviguer-dans-une-page-man/index.mdfalsefalsetruefalse[]pageenpost/post/naviguer-dans-une-page-man/post
        Antenne fractale/post/antenne-fractale/post/antenne-fractale/index.mdfalsefalsetruefalse[]pageenpost/post/antenne-fractale/post
        Vidéos iWeb/post/videos-iweb/post/videos-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/videos-iweb/post
        Nouvel emploi chez iWeb/post/nouvel-emploi-chez-iweb/post/nouvel-emploi-chez-iweb/index.mdfalsefalsetruefalse[]pageenpost/post/nouvel-emploi-chez-iweb/post
        Migrer ou réparer un système GNU/Linux/post/migrer-ou-reparer-un-systeme-gnulinux/post/migrer-ou-reparer-un-systeme-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/migrer-ou-reparer-un-systeme-gnulinux/post
        Bépo pour l'amour du français/post/bepo-pour-lamour-du-francais/post/bepo-pour-lamour-du-francais/index.mdfalsefalsetruefalse[]pageenpost/post/bepo-pour-lamour-du-francais/post
        Liens pour apprendre GNU/Linux, Python et Bash/post/liens-pour-apprendre-gnulinux-python-et-bash/post/liens-pour-apprendre-gnulinux-python-et-bash/index.mdfalsefalsetruefalse[]pageenpost/post/liens-pour-apprendre-gnulinux-python-et-bash/post
        Unifont as a fallback in rxvt-unicode/post/unifont-and-rxvt-unicode/post/unifont-and-rxvt-unicode/index.mdfalsefalsetruefalse[]pageenpost/post/unifont-and-rxvt-unicode/post
        Le Spot, section orange/post/le-spot-section-orange/post/le-spot-section-orange/index.mdfalsefalsetruefalse[]pageenpost/post/le-spot-section-orange/post
        Marque-quadrant/post/marque-quadrant/post/marque-quadrant/index.mdfalsefalsetruefalse[]pageenpost/post/marque-quadrant/post
        Support pour dual-screen/post/support-pour-dual-screen/post/support-pour-dual-screen/index.mdfalsefalsetruefalse[]pageenpost/post/support-pour-dual-screen/post
        Appréciation de la part de GNU dans GNU/Linux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post/appreciation-de-la-part-de-gnu-dans-gnulinux/index.mdfalsefalsetruefalse[]pageenpost/post/appreciation-de-la-part-de-gnu-dans-gnulinux/post
        Colle chaude et roulettes d'imprimante/post/colle-chaude-et-roulettes-dimprimante/post/colle-chaude-et-roulettes-dimprimante/index.mdfalsefalsetruefalse[]pageenpost/post/colle-chaude-et-roulettes-dimprimante/post
        Richard Stallman talk at TEDxGE2014/post/richard-stallman-talk-tedxge2014/post/richard-stallman-talk-tedxge2014/index.mdfalsefalsetruefalse[]pageenpost/post/richard-stallman-talk-tedxge2014/post
        My girlfriend's room/post/my-girlfriends-room/post/my-girlfriends-room/index.mdfalsefalsetruefalse[]pageenpost/post/my-girlfriends-room/post
        Litière à chats efficace et sans tracas/post/litiere-chats-efficace-et-sans-tracas/post/litiere-chats-efficace-et-sans-tracas/index.mdfalsefalsetruefalse[]pageenpost/post/litiere-chats-efficace-et-sans-tracas/post
        Nouveau blogue!/post/nouveau-blogue/post/nouveau-blogue/index.mdfalsefalsetruefalse[]pageenpost/post/nouveau-blogue/post
        JILL avec FACIL/post/jill-avec-facil/post/jill-avec-facil/index.mdfalsefalsetruefalse[]pageenpost/post/jill-avec-facil/post
        City TV Report on The Spot/post/city-tv-report-the-spot/post/city-tv-report-the-spot/index.mdfalsefalsetruefalse[]pageenpost/post/city-tv-report-the-spot/post
        Safety tactics with `rm`/post/safety-tactics-rm/post/safety-tactics-rm/index.mdfalsefalsetruefalse[]pageenpost/post/safety-tactics-rm/post
        Tablettes de cuisine/post/tablettes-de-cuisine/post/tablettes-de-cuisine/index.mdfalsefalsetruefalse[]pageenpost/post/tablettes-de-cuisine/post
        Sending email with openssl and smtp.gmail.com/post/sending-email-openssl-and-smtpgmailcom/post/sending-email-openssl-and-smtpgmailcom/index.mdfalsefalsetruefalse[]pageenpost/post/sending-email-openssl-and-smtpgmailcom/post
        Aiguisage d’une raboteuse/post/aiguisage-dune-raboteuse/post/aiguisage-dune-raboteuse/index.mdfalsefalsetruefalse[]pageenpost/post/aiguisage-dune-raboteuse/post
        Jam de parkour pluvieux/post/jam-de-parkour-pluvieux/post/jam-de-parkour-pluvieux/index.mdfalsefalsetruefalse[]pageenpost/post/jam-de-parkour-pluvieux/post
        Berserk/post/berserk/post/berserk/index.mdfalsefalsetruefalse[]pageenpost/post/berserk/post
        Un bout de tuyau dans le mur/post/un-bout-de-tuyau-dans-le-mur/post/un-bout-de-tuyau-dans-le-mur/index.mdfalsefalsetruefalse[]pageenpost/post/un-bout-de-tuyau-dans-le-mur/post
        Fontaines de couleur/post/fontaines-de-couleur/post/fontaines-de-couleur/index.mdfalsefalsetruefalse[]pageenpost/post/fontaines-de-couleur/post
        Vidéo de parkour : 15 juin 2013/post/video-de-parkour-15-juin-2013/post/video-de-parkour-15-juin-2013/index.mdfalsefalsetruefalse[]pageenpost/post/video-de-parkour-15-juin-2013/post
        Filmographie sur le parkour/post/filmographie-sur-le-parkour/post/filmographie-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/filmographie-sur-le-parkour/post
        Boîtier d'ordinateur en bois/post/boitier-ordinateur-en-bois/post/boitier-ordinateur-en-bois/index.mdfalsefalsetruefalse[]pageenpost/post/boitier-ordinateur-en-bois/post
        Play a music CD with mplayer without skipping/post/play-music-cd-mplayer-without-skipping/post/play-music-cd-mplayer-without-skipping/index.mdfalsefalsetruefalse[]pageenpost/post/play-music-cd-mplayer-without-skipping/post
        Sac anti-statique fait maison/post/sac-anti-statique-fait-maison/post/sac-anti-statique-fait-maison/index.mdfalsefalsetruefalse[]pageenpost/post/sac-anti-statique-fait-maison/post
        Parkour hivernal au Stade olympique/post/parkour-hivernal-au-stade-olympique/post/parkour-hivernal-au-stade-olympique/index.mdfalsefalsetruefalse[]pageenpost/post/parkour-hivernal-au-stade-olympique/post
        Nettoyage de la cartouche de toner/post/nettoyage-de-la-cartouche-de-toner/post/nettoyage-de-la-cartouche-de-toner/index.mdfalsefalsetruefalse[]pageenpost/post/nettoyage-de-la-cartouche-de-toner/post
        rsync Backups and Directory Renaming, a Solution/post/rsync-backups-and-directory-renaming-solution/post/rsync-backups-and-directory-renaming-solution/index.mdfalsefalsetruefalse[]pageenpost/post/rsync-backups-and-directory-renaming-solution/post
        Le calendrier amélioré/post/le-calendrier-ameliore/post/le-calendrier-ameliore/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier-ameliore/post
        Calcul du pourboire/post/calcul-du-pourboire/post/calcul-du-pourboire/index.mdfalsefalsetruefalse[]pageenpost/post/calcul-du-pourboire/post
        Tablette à barbecue/post/tablette-barbecue/post/tablette-barbecue/index.mdfalsefalsetruefalse[]pageenpost/post/tablette-barbecue/post
        Pochette de CD en papier plié/post/paper-cd-case/post/paper-cd-case/index.mdfalsefalsetruefalse[]pageenpost/post/paper-cd-case/post
        Joke de banquier/post/joke-de-banquier/post/joke-de-banquier/index.mdfalsefalsetruefalse[]pageenpost/post/joke-de-banquier/post
        Exercisse de restauration d'une sauvegarde/post/exercice-de-restauration-dune-sauvegarde/post/exercice-de-restauration-dune-sauvegarde/index.mdfalsefalsetruefalse[]pageenpost/post/exercice-de-restauration-dune-sauvegarde/post
        Image Collection Organizing Helper/post/image-collection-organizing-helper/post/image-collection-organizing-helper/index.mdfalsefalsetruefalse[]pageenpost/post/image-collection-organizing-helper/post
        Le cahier Moleskine a 31 lignes/post/le-cahier-moleskine-31-lignes/post/le-cahier-moleskine-31-lignes/index.mdfalsefalsetruefalse[]pageenpost/post/le-cahier-moleskine-31-lignes/post
        Image sorting helper script/post/image-sorting-helper-script/post/image-sorting-helper-script/index.mdfalsefalsetruefalse[]pageenpost/post/image-sorting-helper-script/post
        Monitor Python subprocess' output streams in real-time/post/monitor-python-subprocess-output-streams-real-time/post/monitor-python-subprocess-output-streams-real-time/index.mdfalsefalsetruefalse[]pageenpost/post/monitor-python-subprocess-output-streams-real-time/post
        TV5, Hors série: Traceurs/post/tv5-hors-serie-traceurs/post/tv5-hors-serie-traceurs/index.mdfalsefalsetruefalse[]pageenpost/post/tv5-hors-serie-traceurs/post
        Reportage sur le parkour/post/reportage-sur-le-parkour/post/reportage-sur-le-parkour/index.mdfalsefalsetruefalse[]pageenpost/post/reportage-sur-le-parkour/post
        How I organize my digital documents/post/how-i-organize-my-digital-documents/post/how-i-organize-my-digital-documents/index.mdfalsefalsetruefalse[]pageenpost/post/how-i-organize-my-digital-documents/post
        Rencontre du 2009-04-25/post/rencontre-du-2009-04-25/post/rencontre-du-2009-04-25/index.mdfalsefalsetruefalse[]pageenpost/post/rencontre-du-2009-04-25/post
        Salto arrière au Stade/post/salto-arriere-au-stade/post/salto-arriere-au-stade/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere-au-stade/post
        Salto arrière/post/salto-arriere/post/salto-arriere/index.mdfalsefalsetruefalse[]pageenpost/post/salto-arriere/post
        Le calendrier/post/le-calendrier/post/le-calendrier/index.mdfalsefalsetruefalse[]pageenpost/post/le-calendrier/post
        Publication_types/publication_types/falsetruefalsefalse[]taxonomyenpublication_types/publication_types/publication_types

        .Site.Sections

        1. Page(/post/_index.md)
        2. Page(/docs/_index.md)

        .Site.Params

        .Site.Params is a container holding the values from the params section of your site configuration.
        {"appearance":{"font":"minimal","font_size":"L","theme_day":"minimal","theme_night":"minimal"},"extensions":{"academicons":{"enable":true},"cms":{"branch":"master","local_backend":false},"isotope":{"enable":true}},"features":{"avatar":{"gravatar":false,"shape":"circle"},"comment":{"commento":{"url":""},"disqus":{"shortname":"","show_count":true},"provider":""},"map":{"api_key":"","provider":"","zoom":15},"math":{"enable":false},"privacy_pack":{"enable":false},"repository":{"branch":null,"content_dir":null,"url":null},"search":{"algolia":{"api_key":"","app_id":"","index_name":"","show_logo":false},"provider":"wowchemy"},"syntax_highlighter":{"enable":true,"extra_languages":["r","latex","plaintex"]}},"footer":{"copyright":{"license":{"allow_commercial":false,"allow_derivatives":false,"enable":false,"share_alike":true},"notice":"Copyright © 2009–{year} Alexandre de Verteuil"}},"header":{"navbar":{"align":"l","enable":true,"highlight_active_link":true,"show_day_night":true,"show_language":false,"show_logo":true,"show_search":true}},"locale":{"address_format":"en-us","date_format":"2006-01-02","time_format":"15:04"},"main_menu":{"align":"l","enable":true,"highlight_active_link":true,"show_day_night":true,"show_language":false,"show_logo":true,"show_search":true},"marketing":{"analytics":{"baidu_tongji":"","google_analytics":""},"seo":{"description":"Alexandre de Verteuil, Solutions Architect at Grafana Labs. Personal blog.","local_business_type":"","org_name":"","site_type":"Person","twitter":""},"verification":{"baidu":"","google":""}},"require_fancybox":true}

        .Site.Menus

        main

        .Menu.URL.Page.Title.Name.Identifier.Pre.Post.Weight.Parent.HasChildren().Children.KeyName().Title()
        main#aboutTop10false
          Top
          main#featuredFeatured index20false
            Featured index
            main#postsChronological index30false
              Chronological index

              .Resources

              Page Resources – images, other pages, documents etc. – have page-relative URLs and their own metadata.

              .ResourceType.Name.Title.RelPermalink.MediaType