<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Guillaume Barrette</title>
    <link>https://guillaumebarrette.com/</link>
    <description>Recent content on Guillaume Barrette</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator>
    <language>en-us</language>
    <copyright>&amp;copy; {year}, Guillaume Barrette</copyright>
    <lastBuildDate>Sat, 01 Jun 2030 13:00:00 +0000</lastBuildDate>
    
	    <atom:link href="https://guillaumebarrette.com/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Appearance</title>
      <link>https://guillaumebarrette.com/project/alfred/appearance/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/appearance/</guid>
      <description>

&lt;p&gt;Here is my Alfred Appearance Theme:&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;alfred-appearance.png&#34; alt=&#34;Alfred Appearance&#34; /&gt;&lt;/p&gt;

&lt;!-- 





&lt;figure&gt;

&lt;img src=&#34;https://guillaumebarrette.com/img/project/alfred/alfred-appearance.png&#34; &gt;


&lt;/figure&gt;
 --&gt;

&lt;p&gt;It is a modified version based on the &lt;a href=&#34;http://www.alfredforum.com/topic/9965-elegant-v5-dark-light/&#34; target=&#34;_blank&#34;&gt;&lt;code&gt;Elegant Dark v5&lt;/code&gt;&lt;/a&gt; theme by &lt;a href=&#34;https://www.alfredforum.com/profile/518-jovotrox/&#34; target=&#34;_blank&#34;&gt;@jovotrox&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;

&lt;p&gt;&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://d.pr/f/jSrHh3&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-download&#39;&gt;&lt;/i&gt; 
  Download
&lt;/a&gt;

&lt;!-- - [Theme Download Link](https://d.pr/f/n4qtbD) --&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Command Line Interface (CLI)</title>
      <link>https://guillaumebarrette.com/project/alfred/cli/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/cli/</guid>
      <description>

&lt;p&gt;Alfred Command Line Interface (CLI)&lt;/p&gt;

&lt;h2 id=&#34;search&#34;&gt;Search&lt;/h2&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;#!/usr/bin/env bash

# Guillaume Barrette
# 2019-06-25

# Alfred Search Function
alfs() {
    if [ $# -eq 0 ]; then   # If nothing is put as arguments open Alfred at the working directory so it list the content
        osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to browse \&amp;quot;$(pwd)\&amp;quot;&amp;quot;
    elif [ $# -eq 1 ]; then # If only one argument is set
        if [[ -d $1 ]]; then   # if it looks like a path or file, then make sure we send a full path to Alfred
            osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to browse \&amp;quot;$(realpath -s &amp;quot;$1&amp;quot;)/\&amp;quot;&amp;quot;
        elif [[ -f $1 ]]; then
            osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to browse \&amp;quot;$(realpath -s &amp;quot;$1&amp;quot;)\&amp;quot;&amp;quot;
        else    # Any other words that are not a path would be sent to Alfred as is  (ex: alfs snip  -&amp;gt;  would open Alfred with &amp;quot;snip&amp;quot;)
            osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to search \&amp;quot;$*\&amp;quot;&amp;quot;
        fi
    else   # If multiple arguments are set, then they are sent to Alfred as is. (ex: alfs define allo  -&amp;gt;  would pop Alfred with &amp;quot;define allo&amp;quot;)
        osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to search \&amp;quot;$*\&amp;quot;&amp;quot;
    fi
}
&lt;/code&gt;&lt;/pre&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;file-action&#34;&gt;File Action&lt;/h2&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;#!/usr/bin/env bash

# Guillaume Barrette
# 2019-06-25

# Alfred Action Function (pop the Alfred Action Window)
alfa() {
    if [ $# -eq 0 ]; then    # If no arguments, pop Alfred Action Window in the working directory
        osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to action \&amp;quot;$(pwd)\&amp;quot;&amp;quot;
    else
        args=&amp;quot;&amp;quot;
        argsAreAllPaths=true
        for arg in &amp;quot;$@&amp;quot; ; do
            filePath=$(realpath -s &amp;quot;$arg&amp;quot;)
            if [[ -d $filePath ]] || [[ -f $filePath ]]; then    # if the arg is a file of folder, append the path to the args string to build a list for the osascript command
                args+=&amp;quot;\&amp;quot;$filePath\&amp;quot;,&amp;quot;
            else
                argsAreAllPaths=false   # if one argument is not a folder or file path, then pop Alfred with the standard search and try to access Alfred Action Window. This also makes it clear there&#39;s a problem with one of the passed paths
                break
            fi
        done
        if [ &amp;quot;$argsAreAllPaths&amp;quot; = true ] ; then    # If all arguments are files or directories, open Alfred Action Window with the list
            args=${args%?} # remove the trailing comma
            osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to action { $args }&amp;quot;
        else  # If not all arguments are files or directories, search as is and try to access the Alfred Action Window. The Action Window should pop if it&#39;s possible, or the standard Alfred Search would be shown (ex: alfa activity monitor  -&amp;gt;  Would open the file action window of the Activity Monitor)
            actionKey=&amp;quot;keystroke (ASCII character 29)&amp;quot;  # (meaning: right arrow) Put your prefered action key (Alfred -&amp;gt; File Search -&amp;gt; Actions -&amp;gt; Show Actions) as applescript command for keystroke or key code (ex: &amp;quot;key code 98&amp;quot;)
            delayBetweenEvents=0.1    # Play with the number if the action doesn&#39;t work correctly
            osascript -e &amp;quot;tell application id \&amp;quot;com.runningwithcrayons.Alfred\&amp;quot; to search \&amp;quot;$*\&amp;quot;&amp;quot; -e &amp;quot;delay $delayBetweenEvents&amp;quot; -e &amp;quot;tell application \&amp;quot;System Events\&amp;quot; to $actionKey&amp;quot;
        fi
    fi
}
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://d.pr/f/rQTPtu&#34; target=&#34;_blank&#34;&gt;CLI Download Link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.alfredforum.com/topic/10917-cardhop-workflow/&#34; target=&#34;_blank&#34;&gt;Alfred Forum - Discussion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/guibarrette&#34; target=&#34;_blank&#34;&gt;Source Code&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Compositions</title>
      <link>https://guillaumebarrette.com/music/compositions2/compositions/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/music/compositions2/compositions/</guid>
      <description>

&lt;!-- ## Table of Content

- [Mix Music](#mix-music)
    + [Play](#play)
    + [Résurgence](#résurgence)
    + [A.Guli](#a-guli)
- [Acousmatic Music](#acousmatic-music)
    + [Parasite](#parasite)
    + [Pulsation Symbiotique](#pulsation-symbiotique)
    + [Syncrétisme](#syncrétisme)
- [Instrumentale Music](#instrumentale-music)
    + [Agencement Tumultueux](#agencement-tumultueux)
 --&gt;

&lt;h2 id=&#34;mix-music&#34;&gt;Mix Music&lt;/h2&gt;

&lt;h3 id=&#34;play&#34;&gt;Play&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;p&gt;Play is mainly an improvisation based on the experimentation with different sound generation and capture systems that I developed for my hyper guitar. I started the building of this guitar during the summer of 2011 to have a unique tool for playing and providing new compositional possibilities. I developed a hexaphonic sustainer system as well as one to capture the body of the instrument and the strings individually. This piece is a search on new timbres and sounds by exploring new playing techniques. Every sounds you hear is produced by the instrument and some live processing algorithms; no triggering of samples or playback track.&lt;/p&gt;

&lt;p&gt;Concert: Live at CIRMMT - Montreal - February 2013&lt;/p&gt;

&lt;div style=&#34;padding:56.25% 0 0 0;position:relative;&#34;&gt;&lt;iframe src=&#34;https://player.vimeo.com/video/60663530?portrait=0&#34; style=&#34;position:absolute;top:0;left:0;width:100%;height:100%;&#34; frameborder=&#34;0&#34; allow=&#34;autoplay; fullscreen&#34; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;!-- ### Résurgence (2012) --&gt;

&lt;h3 id=&#34;résurgence&#34;&gt;Résurgence&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;h3 id=&#34;a-guli&#34;&gt;A.Guli&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;p&gt;Interactive composition with my acoustic guitar (2010). All the sounds is made live by transforming the sound of the guitar with a custom Max/MSP patch. The patch is also used to make a live spacialization by using algorithms or sensor (here, only algorithms since my Ipod Touch is broken).&lt;/p&gt;

&lt;p&gt;The piece is mainly made out of a directed improvisation, meaning that the form and atmospheres are established, but the parts are improvised around some ideas.&lt;/p&gt;

&lt;p&gt;Composition made for an 8 channels system, so here is a stereo rendition.&lt;/p&gt;

&lt;div style=&#34;padding:55% 0 0 0;position:relative;&#34;&gt;&lt;iframe src=&#34;https://player.vimeo.com/video/20613403?portrait=0&#34; style=&#34;position:absolute;top:0;left:0;width:100%;height:100%;&#34; frameborder=&#34;0&#34; allow=&#34;autoplay; fullscreen&#34; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;h2 id=&#34;acousmatic-music&#34;&gt;Acousmatic Music&lt;/h2&gt;

&lt;h3 id=&#34;parasite&#34;&gt;Parasite&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/15371064%3Fsecret_token%3Ds-Vepns&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;!-- ### Pulsation Symbiotique (2009) --&gt;

&lt;h3 id=&#34;pulsation-symbiotique&#34;&gt;Pulsation Symbiotique&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083391%3Fsecret_token%3Ds-BKLjt&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;!-- ### Syncrétisme (2009) --&gt;

&lt;h3 id=&#34;syncrétisme&#34;&gt;Syncrétisme&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083547%3Fsecret_token%3Ds-Rwb1j&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;h2 id=&#34;instrumentale-music&#34;&gt;Instrumentale Music&lt;/h2&gt;

&lt;h3 id=&#34;agencement-tumultueux&#34;&gt;Agencement Tumultueux&lt;/h3&gt;

&lt;!-- Type: Instrumentale --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083472%3Fsecret_token%3Ds-4Kr0j&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;div class=&#34;buttond&#34;&gt;&lt;p class=&#34;buttond&#34;  style=&#34;text-align:center;&#34;&gt;&lt;a href=&#34;Https://teststore.fesh.store/index.php?route=checkout/cart&amp;product_id=12&amp;quantity=1&amp;target=checkout&#34; target=&#34;_self&#34; style=&#34;cursor: pointer; font-size:17px;  text-decoration: none; padding:10px 66px; color:#000000; background-color:#c1046a; border-radius:7px; border: 3px solid #c1046a;&#34;&gt;BUY&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;div class=&#34;buttond&#34;&gt;&lt;p class=&#34;buttond&#34;  style=&#34;text-align:center;&#34;&gt;&lt;a href=&#34;Https://teststore.fesh.store/index.php?route=checkout/cart&amp;product_id=12&amp;quantity=1&amp;target=checkout&amp;style=simplecheckout&#34; target=&#34;_self&#34; style=&#34;cursor: pointer; font-size:19px;  text-decoration: none; padding:10px 62px; color:#000000; background-color:#c1046a; border-radius:5px; border: 3px solid #c1046a;&#34;&gt;BUY&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href=&#34;https://teststore.fesh.store/index.php?route=checkout/cart&amp;amp;product_id=12&amp;amp;quantity=1&amp;amp;target=checkout&amp;amp;style=simplecheckout&#34; target=&#34;_blank&#34;&gt;https://teststore.fesh.store/index.php?route=checkout/cart&amp;amp;product_id=12&amp;amp;quantity=1&amp;amp;target=checkout&amp;amp;style=simplecheckout&lt;/a&gt;&lt;/p&gt;

&lt;!-- Script for de Vimeo Video Player --&gt;

&lt;script src=&#34;https://player.vimeo.com/api/player.js&#34;&gt;&lt;/script&gt;
</description>
    </item>
    
    <item>
      <title>Email</title>
      <link>https://guillaumebarrette.com/project/alfred/email/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/email/</guid>
      <description>

&lt;p&gt;&lt;img src=&#34;spark-icon.png&#34; class=&#34;header_img&#34;&gt;&lt;/p&gt;

&lt;h2 id=&#34;spark&#34;&gt;Spark&lt;/h2&gt;

&lt;!-- &lt;img src=&#34;spark-icon.png&#34; style=&#34;display:none;&#34;&gt; --&gt;

&lt;!-- &lt;a class=&#34;btn btn-primary&#34; href=&#34;https://d.pr/f/jSrHh3&#34; role=&#34;button&#34; &gt;Download&lt;/a&gt; --&gt;

&lt;p&gt;&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://www.alfredforum.com/topic/8821-default-email-client-when-sending-files/?do=findComment&amp;amp;comment=58125&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-comments&#39;&gt;&lt;/i&gt; 
  Discussion
&lt;/a&gt;

&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://d.pr/f/jSrHh3&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-download&#39;&gt;&lt;/i&gt; 
  Download
&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;Here is a little plugin to use Spark from Alfred.&lt;/p&gt;

&lt;p&gt;Download the file/plugin and put it into the folder at &lt;code&gt;~/Library/Application Support/Alfred/Plugins/Email/&lt;/code&gt;&lt;/p&gt;

&lt;!-- &amp;emsp;&lt;i class=&#34;fas fa-download&#34;&gt;&lt;/i&gt;&amp;emsp;[Download](https://d.pr/f/jSrHh3) --&gt;

&lt;!-- &amp;emsp;&lt;i class=&#34;fas fa-comments&#34;&gt;&lt;/i&gt;&amp;emsp;[Discussion](https://www.alfredforum.com/topic/8821-default-email-client-when-sending-files/?do=findComment&amp;comment=58125) --&gt;

&lt;pre&gt;&lt;code class=&#34;language-applescript&#34;&gt;-- Use Spark as default email application with Alfred
-- Based on MailMate plugin script: https://www.alfredforum.com/topic/2354-add-support-for-mailmate-email-client/

-- Send an email with an attachment
on url_encode(theText)
  return do shell script &amp;quot;printf &amp;quot; &amp;amp; quoted form of theText &amp;amp; &amp;quot; | xxd -u -plain | sed &#39;s/\\(..\\)/%\\1/g&#39; | tr -d &#39;\\n&#39;&amp;quot;
end url_encode

on create_mailto(_subject, _body, _email, _name)
  set _to to _email
  if (_name is not &amp;quot;&amp;quot;) then
    set _to to _name &amp;amp; &amp;quot; &amp;lt;&amp;quot; &amp;amp; _email &amp;amp; &amp;quot;&amp;gt;&amp;quot;
  end if
  return &amp;quot;mailto:?to=&amp;quot; &amp;amp; url_encode(_to) &amp;amp; &amp;quot;&amp;amp;subject=&amp;quot; &amp;amp; url_encode(_subject) &amp;amp; &amp;quot;&amp;amp;body=&amp;quot; &amp;amp; url_encode(_body)
end create_mailto

on send_email_with_attachment(ename, eemail, esubject, ebody, eattachment)
  set _mailto to create_mailto(esubject, ebody, eemail, ename)
  tell application &amp;quot;Spark&amp;quot;
    activate
    open location _mailto with trust
  end tell
  repeat with attachment in eattachment
    do shell script &amp;quot;open -a Spark \&amp;quot;&amp;quot; &amp;amp; attachment &amp;amp; &amp;quot;\&amp;quot;&amp;quot;
  end repeat
end send_email_with_attachment
&lt;/code&gt;&lt;/pre&gt;
</description>
    </item>
    
    <item>
      <title>Snippets</title>
      <link>https://guillaumebarrette.com/project/alfred/snippets/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/snippets/</guid>
      <description>

&lt;p&gt;Here are some Alfred&amp;rsquo;s Snippet Collections that I think could be useful to others.&lt;/p&gt;

&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://d.pr/f/n4qtbD&#34; target=&#34;_blank&#34;&gt;Theme Download Link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Terminal</title>
      <link>https://guillaumebarrette.com/project/alfred/terminal/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/terminal/</guid>
      <description>

&lt;!-- &lt;img align=&#34;right&#34; width=&#34;40&#34; height=&#34;40&#34; src=&#34;https://raw.githubusercontent.com/akarsh/akarsh-seggemu-resume/master/akarsh%20seggemu%20resume/Assets/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60%403x.png&#34; alt=&#34;Resume application project app icon&#34;&gt; --&gt;

&lt;!-- &lt;div&gt;&lt;img src=&#34;iTerm-icon.png&#34; class=&#34;header_img&#34;&gt; --&gt;

&lt;p&gt;&lt;img src=&#34;iTerm-icon.png&#34; class=&#34;header_img&#34;&gt;&lt;/p&gt;

&lt;h2 id=&#34;iterm&#34;&gt;iTerm&lt;/h2&gt;

&lt;h3 id=&#34;set-as-the-custom-terminal&#34;&gt;Set as the Custom Terminal&lt;/h3&gt;

&lt;!-- This is useful if you are using Alfred&#39;s actions to send a query to your Terminal application (ex: the `Open Terminal Here` file action) --&gt;

&lt;p&gt;1) Go into Alfred&amp;rsquo;s preferences at: &lt;code&gt;Features &amp;gt; Terminal&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;2) Set &lt;code&gt;Application&lt;/code&gt;&amp;rsquo;s drop-down menu to &lt;code&gt;Custom&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;3) Insert this script into the text input area:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-applescript&#34;&gt;-- Guillaume Barrette
-- 2019-05-04

on alfred_script(q)
    tell application &amp;quot;iTerm&amp;quot;
        activate
        tell current window
            try
                if is hotkey window then reveal hotkey window
                create tab with default profile
            on error
                create window with default profile
            end try
            tell current session to write text q
        end tell
    end tell
end alfred_script
&lt;/code&gt;&lt;/pre&gt;

&lt;h3 id=&#34;note&#34;&gt;*Note&lt;/h3&gt;

&lt;p&gt;As reference, I was using &lt;a href=&#34;https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred/blob/master/custom_iterm_script_iterm_2.9.applescript&#34; target=&#34;_blank&#34;&gt;this script&lt;/a&gt;, before building my own. I found some problems while using it and decided to create my own version that better work with my workflow. However, I thought I would tell it here in case this other script better work for you.&lt;/p&gt;

&lt;!-- ## Links
- [CLI Download Link](https://d.pr/f/rQTPtu)
- [Alfred Forum - Discussion](https://www.alfredforum.com/topic/10917-cardhop-workflow/)
- [Source Code](https://github.com/guibarrette)
 --&gt;

&lt;!-- --- --&gt;

&lt;!-- ## Hyper &lt;img src=&#34;hyper-icon.png&#34; style=&#34;display:none;&#34;&gt; --&gt;

&lt;p&gt;&lt;div&gt;&lt;img src=&#34;hyper-icon.png&#34; class=&#34;header_img&#34;&gt;&lt;/p&gt;

&lt;h2 id=&#34;hyper&#34;&gt;Hyper&lt;/h2&gt;

&lt;p&gt;&lt;/div&gt;
&lt;!-- &lt;ul class=&#34;fa-ul&#34;&gt;
  &lt;li&gt;
    &lt;i class=&#34;fa-li fas fa-comments&#34;&gt;&lt;/i&gt;
    &lt;a href=&#34;https://www.alfredforum.com/topic/10444-change-default-terminal-to-hyperis/&#34; target=&#34;_blank&#34;&gt;Discussion in the Alfred Forum&lt;/a&gt;
  &lt;/li&gt;
&lt;/ul&gt; --&gt;&lt;/p&gt;

&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://www.alfredforum.com/topic/10444-change-default-terminal-to-hyperis/&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-comments&#39;&gt;&lt;/i&gt; 
  Discussion
&lt;/a&gt;


&lt;!-- &amp;emsp;&lt;i class=&#34;fas fa-comments&#34;&gt;&lt;/i&gt;&amp;emsp;[Discussion in the Alfred Forum](https://www.alfredforum.com/topic/10444-change-default-terminal-to-hyperis/) --&gt;

&lt;p&gt;I&amp;rsquo;m not using this Terminal application, but I&amp;rsquo;ve helped some people to make it work for them on the &lt;a href=&#34;https://www.alfredforum.com/topic/10444-change-default-terminal-to-hyperis/&#34; target=&#34;_blank&#34;&gt;Alfred Forum&lt;/a&gt;. I&amp;rsquo;m leaving this here in case this is useful to someone else.&lt;/p&gt;

&lt;p&gt;To use it, just do the same as above with the &lt;a href=&#34;#iterm&#34;&gt;iTerm&lt;/a&gt; terminal, but replace the script with this one:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-applescript&#34;&gt;-- Guillaume Barrette
-- 2017-06-30

 on alfred_script(q)
    if (text 1 thru 2 of q) is equal to &amp;quot;cd&amp;quot; then
        do shell script &amp;quot;open -a Hyper &amp;quot; &amp;amp; text 4 thru -1 of q
    else
        do shell script &amp;quot;open -a Hyper ~&amp;quot;
        set appRead to false
        set nbrOfTry to 0
        delay 0.5
        repeat
            try
                tell application &amp;quot;System Events&amp;quot;
                    set appRead to true
                    if exists (window 1 of process &amp;quot;Hyper&amp;quot;) then exit repeat
                end tell
            end try
            set nbrOfTry to nbrOfTry + 1
            if nbrOfTry = 20 then exit repeat
            delay 0.5
        end repeat
        if appRead then tell application &amp;quot;System Events&amp;quot; to keystroke q &amp;amp; return
    end if
end alfred_script
&lt;/code&gt;&lt;/pre&gt;
</description>
    </item>
    
    <item>
      <title>Spoon: NotePlan</title>
      <link>https://guillaumebarrette.com/project/hammerspoon/spoon-noteplan/</link>
      <pubDate>Sun, 05 May 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/hammerspoon/spoon-noteplan/</guid>
      <description>

&lt;p&gt;In this tutorial, I&amp;rsquo;ll share my top 10 tips for getting started with Academic:&lt;/p&gt;

&lt;h2 id=&#34;tip-1&#34;&gt;Tip 1&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;

&lt;h2 id=&#34;tip-2&#34;&gt;Tip 2&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Example Page 1</title>
      <link>https://guillaumebarrette.com/docs/example/example1/</link>
      <pubDate>Sun, 05 May 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/docs/example/example1/</guid>
      <description>

&lt;p&gt;In this tutorial, I&amp;rsquo;ll share my top 10 tips for getting started with Academic:&lt;/p&gt;

&lt;h2 id=&#34;tip-1&#34;&gt;Tip 1&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;

&lt;h2 id=&#34;tip-2&#34;&gt;Tip 2&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://guillaumebarrette.com/_hidden/slider/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/slider/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Example Page 2</title>
      <link>https://guillaumebarrette.com/docs/example/example2/</link>
      <pubDate>Sun, 05 May 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/docs/example/example2/</guid>
      <description>

&lt;p&gt;Here are some more tips for getting started with Academic:&lt;/p&gt;

&lt;h2 id=&#34;tip-3&#34;&gt;Tip 3&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;

&lt;h2 id=&#34;tip-4&#34;&gt;Tip 4&lt;/h2&gt;

&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Academic</title>
      <link>https://guillaumebarrette.com/_hidden/hero/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/hero/</guid>
      <description>&lt;p&gt;&lt;strong&gt;The Best Way to Create the Website You Want from Markdown (or Jupyter/RStudio)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Build &lt;strong&gt;Anything&lt;/strong&gt; with Widgets&lt;/p&gt;

&lt;p&gt;&lt;span style=&#34;text-shadow: none;&#34;&gt;&lt;a class=&#34;github-button&#34; href=&#34;https://github.com/gcushen/hugo-academic&#34; data-icon=&#34;octicon-star&#34; data-size=&#34;large&#34; data-show-count=&#34;true&#34; aria-label=&#34;Star this on GitHub&#34;&gt;Star&lt;/a&gt;&lt;script async defer src=&#34;https://buttons.github.io/buttons.js&#34;&gt;&lt;/script&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Main View</title>
      <link>https://guillaumebarrette.com/docs/syncframe/ui/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/docs/syncframe/ui/</guid>
      <description>

&lt;p&gt;Here are some Alfred&amp;rsquo;s Snippet Collections that I think could be useful to others.&lt;/p&gt;

&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://d.pr/f/n4qtbD&#34; target=&#34;_blank&#34;&gt;Theme Download Link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Demos</title>
      <link>https://guillaumebarrette.com/_hidden/demo/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/demo/</guid>
      <description>&lt;p&gt;Welcome to the &lt;strong&gt;personal demo&lt;/strong&gt; of Academic. Other demos available include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Project Demo&lt;/strong&gt; (Academic&amp;rsquo;s actual site)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Over 100,000 &lt;a href=&#34;https://sourcethemes.com/academic/#expo&#34; target=&#34;_blank&#34;&gt;Amazing Websites&lt;/a&gt; have Already Been Built with Academic&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/&#34; target=&#34;_blank&#34;&gt;Join&lt;/a&gt; the Most Empowered Hugo Community&lt;/strong&gt;&lt;/p&gt;

&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    &lt;p&gt;This homepage section is an example of adding &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;elements&lt;/a&gt; to the &lt;a href=&#34;https://sourcethemes.com/academic/docs/widgets/&#34; target=&#34;_blank&#34;&gt;&lt;em&gt;Blank&lt;/em&gt; widget&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Backgrounds can be applied to any section. Here, the &lt;em&gt;background&lt;/em&gt; option is set give an &lt;em&gt;image parallax&lt;/em&gt; effect.&lt;/p&gt;

  &lt;/div&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Cardhop</title>
      <link>https://guillaumebarrette.com/project/alfred/wf-cardhop/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/project/alfred/wf-cardhop/</guid>
      <description>

&lt;!-- ![Cardhop Icon](cardhop-icon-big@2x.png) --&gt;







&lt;figure&gt;

&lt;img src=&#34;cardhop-icon-big@2x.png&#34; alt=&#34;Cardhop Icon&#34; width=&#34;20%&#34; &gt;


&lt;/figure&gt;


&lt;!-- ## Links
- &lt;i class=&#34;fas fa-download&#34;&gt;&lt;/i&gt; [Workflow Download Link](https://d.pr/f/rQTPtu)
- &lt;i class=&#34;fas fa-comments&#34;&gt;&lt;/i&gt; [Alfred Forum - Discussion](https://www.alfredforum.com/topic/10917-cardhop-workflow/)
- &lt;i class=&#34;fas fa-code&#34;&gt;&lt;/i&gt; [Source Code](https://github.com/guibarrette) --&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;about-this-workflow&#34;&gt;About this workflow&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://flexibits.com/cardhop&#34; target=&#34;_blank&#34;&gt;Cardhop&lt;/a&gt; is a contact application that live in your menubar and is developped by &lt;a href=&#34;https://flexibits.com&#34; target=&#34;_blank&#34;&gt;Flexibits&lt;/a&gt;. This workflow add multiple interactions from Alfred.&lt;/p&gt;

&lt;p&gt;&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://www.alfredforum.com/topic/10917-cardhop-workflow/&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-comments&#39;&gt;&lt;/i&gt; 
  Discussion
&lt;/a&gt;

&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://d.pr/f/rQTPtu&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-download&#39;&gt;&lt;/i&gt; 
  Download
&lt;/a&gt;

&lt;a class=&#39;btn
	btn-primary
	btn-sm&#39;
  href=&#39;https://github.com/guibarrette&#39; role=&#34;button&#34; &gt;
  
  &lt;i class=&#39;fas fa-code&#39;&gt;&lt;/i&gt; 
  Source Code
&lt;/a&gt;
&lt;/p&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;

&lt;h3 id=&#34;keyword&#34;&gt;Keyword&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a name=&#34;keyword_chc&#34;&gt;&lt;/a&gt;&lt;code&gt;chc&lt;/code&gt; : Search a contact in Alfred and open it in Cardhop&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;a name=&#34;keyword_chs&#34;&gt;&lt;/a&gt;&lt;code&gt;chs&lt;/code&gt; or hotkey : Send the query to Cardhop. If the query is empty, it tries to get the selection from the front application and send it to Carhop (In short, you can select the contact information on it&amp;rsquo;s website or email and call &lt;code&gt;chs&lt;/code&gt; from Alfred and the selection should be sent directly to Cardhop). You can use this action to send the selection or pass a string to your Favorites list (alternative to keyword: &lt;code&gt;chf&lt;/code&gt;) or to the Cardhop&amp;rsquo;s Actions (alternative to keyword: &lt;code&gt;cha&lt;/code&gt;).&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;a name=&#34;keyword_chf&#34;&gt;&lt;/a&gt;&lt;code&gt;chf&lt;/code&gt; : Send a string from your Favorites list directly to Cardhop (could be used as a Snippets/Bookmarks list to rapidly write a query to Cardhop that you know gives you the right information in it without the need to write it all). Write your list in the Workflow Environment Variables &lt;code&gt;Favorites&lt;/code&gt; and separated by semicolon (&lt;code&gt;;&lt;/code&gt;). Ex: &lt;code&gt;Call mom home;Mail boss work;facetime Complicated Name;website businessName;/MyTag;Direction dentist&lt;/code&gt;&amp;hellip; A variable &lt;code&gt;{q}&lt;/code&gt; could be used to have a placeholder for a string that you want to set just before sending to Cardhop (ex: &lt;code&gt;Email {q} work&lt;/code&gt; where &lt;code&gt;{q}&lt;/code&gt; could be changed to any name at the time that you invoke the workflow).&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;&lt;a name=&#34;keyword_cha&#34;&gt;&lt;/a&gt;&lt;code&gt;cha&lt;/code&gt; : Show a list of possible Carhop actions. If arriving to this function using the Send feature (chs), then the selection or query would be appended to the Cardhop action before sending it.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&#34;hotkey&#34;&gt;Hotkey&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Send the selection to the workflow (alternative to keyword: &lt;a href=&#34;#keyword_chs&#34;&gt;&lt;code&gt;chs&lt;/code&gt;&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Send selection directly to Cardhop. For use if you prefer to send the selection directly to Cardhop with a hotkey instead of a keyword&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&#34;fallback-search&#34;&gt;Fallback Search&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Send the query to Cardhop : If you want to write the information directly in Alfred without any keyword before. To make it works, you would need to add the Fallback search into your Alfred Preferences at:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;Features/Default Results/Setup fallback results/+/Workflow Trigger/Send to Cardhop&lt;/code&gt;&lt;/p&gt;

&lt;h3 id=&#34;external-trigger&#34;&gt;External Trigger&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Send a string to Cardhop from an external script. Other external triggers are set in case that you want to pop the &lt;code&gt;Favorites list&lt;/code&gt; or &lt;code&gt;Actions list&lt;/code&gt; from an external script.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Append/Prepend string : Add a string before or after the main string before sending using a predefined list or any string if the query doesn&amp;rsquo;t match an item in the list (Could be useful to have a list of predefined group/tags) (See &lt;a href=&#34;#workflow-environment-variables&#34;&gt;&lt;code&gt;Workflow Environment Variables&lt;/code&gt;&lt;/a&gt; and &lt;a href=&#34;#navigation&#34;&gt;&lt;code&gt;Navigation&lt;/code&gt;&lt;/a&gt; lists below)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;workflow-environment-variables&#34;&gt;Workflow Environment Variables&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;Favorites&lt;/code&gt; [list delimited by &lt;code&gt;;&lt;/code&gt;] : See keyword &lt;a href=&#34;#keyword_chf&#34;&gt;&lt;code&gt;chf&lt;/code&gt;&lt;/a&gt; above&lt;/li&gt;
&lt;li&gt;&lt;code&gt;AppendToSend&lt;/code&gt; [list delimited by &lt;code&gt;;&lt;/code&gt;] : Set a predefined list of string to append using the Append feature (ALT key)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;PrependToSend&lt;/code&gt; [list delimited by &lt;code&gt;;&lt;/code&gt;] : Set a predefined list of string to prepend using the Prepend feature (CTRL key)&lt;/li&gt;
&lt;/ul&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;navigation&#34;&gt;Navigation&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;CMD&lt;/code&gt; : Go to the Send feature Actions List (&lt;a href=&#34;#keyword_chs&#34;&gt;&lt;code&gt;chs&lt;/code&gt;&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ALT&lt;/code&gt; : Activate the selected item and append extra string (using the &lt;a href=&#34;#workflow-environment-variables&#34;&gt;&lt;code&gt;AppendToSend&lt;/code&gt;&lt;/a&gt; list)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;CTRL&lt;/code&gt; : Activate the selected item and prepend extra string (using the &lt;a href=&#34;#workflow-environment-variables&#34;&gt;&lt;code&gt;PrependToSend&lt;/code&gt;&lt;/a&gt; list)&lt;/li&gt;
&lt;/ul&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;tips&#34;&gt;Tips&lt;/h2&gt;

&lt;h3 id=&#34;set-cardhop-as-default-contact-application&#34;&gt;Set Cardhop as default contact application&lt;/h3&gt;

&lt;p&gt;To use Cardhop as default contact application in Alfred:&lt;/p&gt;

&lt;p&gt;Insert &lt;code&gt;x-cardhop://show?id={uid}&lt;/code&gt; into &lt;code&gt;Features &amp;gt; Contacts &amp;gt; Advanced &amp;gt; URL Handler&lt;/code&gt; instead of &lt;code&gt;addressbook://{uid}&lt;/code&gt;&lt;/p&gt;

&lt;h3 id=&#34;directly-activate-an-action-in-cardhop&#34;&gt;Directly activate an action in Cardhop&lt;/h3&gt;

&lt;p&gt;Cardhop seems to delay the keyboard inputs until it has done parsing the query. Therefore, to directly activate an action you can rapidly press &lt;code&gt;Enter&lt;/code&gt; key a second time when you select an item from your &lt;a href=&#34;#workflow-environment-variables&#34;&gt;Favorites&lt;/a&gt; list in Alfred and it should run the first action that Cardhop returns.&lt;/p&gt;

&lt;!-- --- --&gt;

&lt;h2 id=&#34;changelog&#34;&gt;Changelog&lt;/h2&gt;

&lt;h4 id=&#34;2018-02-24-update-version-1-2-5&#34;&gt;2018-02-24 - Update Version 1.2.5&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Cardhop Actions list should now be in your own language (I’m getting the localization from the Cardhop application directly, so you should get the same thing as in the application)&lt;/li&gt;
&lt;li&gt;Some bugs fix&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id=&#34;2017-11-08-version-1-2-1&#34;&gt;2017-11-08 - Version 1.2.1&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Added &amp;ldquo;Skype for Business&amp;rdquo; in the Cardhop&amp;rsquo;s action list (new action from Cardhop 1.0.2)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id=&#34;2017-11-06-update-version-1-2-0&#34;&gt;2017-11-06 - Update Version 1.2.0&lt;/h4&gt;

&lt;h5 id=&#34;new-features&#34;&gt;New Features&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;Keyword &amp;ldquo;cha&amp;rdquo; : Show a list of possible Carhop actions. If arriving to this function using the Send feature (chs), then the selection or query would be appended to the Cardhop action before sending it. (Could be used as an easy way to remember possible actions that can be done with Cardhop)&lt;/li&gt;
&lt;li&gt;Favorites List : A new variable &amp;ldquo;{q}&amp;rdquo; could be used to have a placeholder for a string that you want to set just before sending to Cardhop (ex: &amp;ldquo;Email {q} work&amp;rdquo; where {q} could be changed to any name at the time that you invoke the workflow).&lt;/li&gt;
&lt;li&gt;Append/Prepend string : Add a string before or after the main string before sending using a predefined list or any string if the query doesn&amp;rsquo;t match an item in the list (Could be useful to have a list of predefined group/tags: /Business;/Friends&amp;hellip;)&lt;/li&gt;
&lt;/ul&gt;

&lt;h5 id=&#34;new-workflow-environment-variables&#34;&gt;New Workflow Environment Variables&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;AppendToSend : Set a predefined list of string (separated by semicolon &amp;ldquo;;&amp;rdquo;) to append using the Append feature (ALT key)&lt;/li&gt;
&lt;li&gt;PrependToSend : Set a predefined list of string (separated by semicolon &amp;ldquo;;&amp;rdquo;)  to prepend using the Prepend feature (CTRL key)&lt;/li&gt;
&lt;/ul&gt;

&lt;h5 id=&#34;navigation-1&#34;&gt;Navigation&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;CMD : Go to the Send feature Actions List (chs)&lt;/li&gt;
&lt;li&gt;ALT : Activate the selected item and append extra string (using the &lt;a href=&#34;#workflow-environment-variables&#34;&gt;AppendToSend&lt;/a&gt; list)&lt;/li&gt;
&lt;li&gt;CTRL : Activate the selected item and prepend extra string (using the &lt;a href=&#34;#workflow-environment-variables&#34;&gt;PrependToSend&lt;/a&gt; list)&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id=&#34;2017-11-01-update-version-1-1-0&#34;&gt;2017-11-01 - Update Version 1.1.0&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;New Feature&lt;/strong&gt;
- Added keyword &lt;code&gt;chf&lt;/code&gt; to send a string from your Favorites list directly to Cardhop.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Global</title>
      <link>https://guillaumebarrette.com/docs/syncframe/preferences/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/docs/syncframe/preferences/</guid>
      <description>

&lt;p&gt;Here are some Alfred&amp;rsquo;s Snippet Collections that I think could be useful to others.&lt;/p&gt;

&lt;h2 id=&#34;links&#34;&gt;Links&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://d.pr/f/n4qtbD&#34; target=&#34;_blank&#34;&gt;Theme Download Link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Skills</title>
      <link>https://guillaumebarrette.com/_hidden/skills/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/skills/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Experience</title>
      <link>https://guillaumebarrette.com/_hidden/experience/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/experience/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Accomplish&amp;shy;ments</title>
      <link>https://guillaumebarrette.com/_hidden/accomplishments/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/accomplishments/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Projects</title>
      <link>https://guillaumebarrette.com/_hidden/project_disabled/_index-copie/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/project_disabled/_index-copie/</guid>
      <description></description>
    </item>
    
    <item>
      <title>People</title>
      <link>https://guillaumebarrette.com/_hidden/people/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/people/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Recent &amp; Upcoming Talks</title>
      <link>https://guillaumebarrette.com/_hidden/talks/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/talks/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Featured Publications</title>
      <link>https://guillaumebarrette.com/_hidden/featured/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/featured/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Popular Topics</title>
      <link>https://guillaumebarrette.com/_hidden/tags/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/tags/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Contact</title>
      <link>https://guillaumebarrette.com/contact-/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/contact-/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Releases Notes</title>
      <link>https://guillaumebarrette.com/docs/syncframe/releases/</link>
      <pubDate>Mon, 24 Jun 2019 00:00:00 +0100</pubDate>
      
      <guid>https://guillaumebarrette.com/docs/syncframe/releases/</guid>
      <description>

&lt;h2 id=&#34;1-0-0&#34;&gt;1.0.0&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;span class=&#34;label_added&#34;&gt;ADDED&lt;/span&gt;
Initial release&lt;/li&gt;
&lt;li&gt;&lt;span class=&#34;label_improved&#34;&gt;IMPROVED&lt;/span&gt;
Initial release&lt;/li&gt;
&lt;li&gt;&lt;span class=&#34;label_fixed&#34;&gt;FIXED&lt;/span&gt;
Initial release&lt;/li&gt;
&lt;li&gt;&lt;span class=&#34;label_removed&#34;&gt;REMOVED&lt;/span&gt;
Initial release&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;span class=&#34;label_added&#34;&gt;ADDED&lt;/span&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cela&lt;/li&gt;
&lt;li&gt;et cela&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;span class=&#34;label_fixed&#34;&gt;FIXED&lt;/span&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cela&lt;/li&gt;
&lt;li&gt;et cela&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Example Talk</title>
      <link>https://guillaumebarrette.com/project-bk/talk_example/</link>
      <pubDate>Sat, 01 Jun 2030 13:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/talk_example/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click on the &lt;strong&gt;Slides&lt;/strong&gt; button above to view the built-in slides feature.
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Slides can be added in a few ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Create&lt;/strong&gt; slides using Academic&amp;rsquo;s &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#create-slides&#34; target=&#34;_blank&#34;&gt;&lt;em&gt;Slides&lt;/em&gt;&lt;/a&gt; feature and link using &lt;code&gt;slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Upload&lt;/strong&gt; an existing slide deck to &lt;code&gt;static/&lt;/code&gt; and link using &lt;code&gt;url_slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Embed&lt;/strong&gt; your slides (e.g. Google Slides) or presentation video on this page using &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;shortcodes&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Further talk details can easily be added to this page using &lt;em&gt;Markdown&lt;/em&gt; and $\rm \LaTeX$ math code.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Example Talk</title>
      <link>https://guillaumebarrette.com/talk/example/</link>
      <pubDate>Sat, 01 Jun 2030 13:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/talk/example/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click on the &lt;strong&gt;Slides&lt;/strong&gt; button above to view the built-in slides feature.
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Slides can be added in a few ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Create&lt;/strong&gt; slides using Academic&amp;rsquo;s &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#create-slides&#34; target=&#34;_blank&#34;&gt;&lt;em&gt;Slides&lt;/em&gt;&lt;/a&gt; feature and link using &lt;code&gt;slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Upload&lt;/strong&gt; an existing slide deck to &lt;code&gt;static/&lt;/code&gt; and link using &lt;code&gt;url_slides&lt;/code&gt; parameter in the front matter of the talk file&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Embed&lt;/strong&gt; your slides (e.g. Google Slides) or presentation video on this page using &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;shortcodes&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Further talk details can easily be added to this page using &lt;em&gt;Markdown&lt;/em&gt; and $\rm \LaTeX$ math code.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Privacy Policy</title>
      <link>https://guillaumebarrette.com/privacy/</link>
      <pubDate>Mon, 19 Aug 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/privacy/</guid>
      <description>

&lt;p&gt;Dernière mise à jour: 19 Août 2019&lt;/p&gt;

&lt;p&gt;Votre confidentialité est importante pour nous et nous nous efforçons à respecter votre vie privé en traitant vos information et données recueillies de façon légales, transparente, équitable et ce sans affecter l&amp;rsquo;exercice de vos droits en tant que personne concernée.&lt;/p&gt;

&lt;p&gt;Veuillez lire attentivement les informations suivantes avant d&amp;rsquo;utiliser un de nos services ou produits ou notre site Internet (les &lt;strong&gt;Services&lt;/strong&gt;) afin de bien comprendre nos pratique et procédures. En utilisant un de nos &lt;strong&gt;Services&lt;/strong&gt;, vous reconnaissez que vous avez accepté les termes de cette politique de confidentialité. Si vous êtes en désaccord avec ces conditions, n&amp;rsquo;installez et/ou n&amp;rsquo;utilisez pas nos &lt;strong&gt;Services&lt;/strong&gt;. Si les options « accepter » ou « refuser » les termes s&amp;rsquo;affichent, cliquez sur « refuser ».&lt;/p&gt;

&lt;p&gt;Nous pouvons modifier cette Politique de confidentialité de temps à autre et sans préavis. Lorsque nous le faisons, nous mettrons à jour la date de Dernière mise à jour ci-haut. Il est donc important que vous consultiez régulièrement cette Politique de confidentialité pour vous assurer d&amp;rsquo;être au fait des changements éventuels.&lt;/p&gt;

&lt;p&gt;Si ce document a été traduit dans une autre langue que le français, en cas de litige concernant son interprétation, le contenu de la version en français prévaudra.&lt;/p&gt;

&lt;h2 id=&#34;collecte-d-informations-et-utilisation&#34;&gt;Collecte d&amp;rsquo;informations et utilisation&lt;/h2&gt;

&lt;p&gt;Les quelques informations collectés sont utilisés à des fins d&amp;rsquo;assurer ou d&amp;rsquo;améliorer nos &lt;strong&gt;Services&lt;/strong&gt;. Vos données personnelles ne sont pas utilisées à des fins de marketing à moins qu’il vous soit demandé, par exemple, pour recueillir des témoignages d’utilisateur.&lt;/p&gt;

&lt;h4 id=&#34;données-personnelles&#34;&gt;Données personnelles&lt;/h4&gt;

&lt;p&gt;Lorsque vous vous inscrivez à nos newsletters, participez à nos bêtas test, vos données personnel peut être recueillis et enregistrer. (Nom et adresse email)&lt;/p&gt;

&lt;h2 id=&#34;site-internet&#34;&gt;Site Internet&lt;/h2&gt;

&lt;p&gt;Lorsque vous visitez notre site Web, nous utilisons des cookies pour collecter des informations relatives à l&amp;rsquo;utilisation du site telles que le type et la version de votre navigateur et le système d&amp;rsquo;exploitation utilisé.&lt;/p&gt;

&lt;h2 id=&#34;communications-par-e-mail&#34;&gt;Communications par e-mail&lt;/h2&gt;

&lt;p&gt;Dans le but d’offrir un meilleur services et de s’assurer que la communication a bien été acheminé, nous pouvons utiliser le « suivi par image » lorsque nous communiquons avec vous afin de déterminer si vous lisez ou non nos communications envoyées par e-mail.&lt;/p&gt;

&lt;h3 id=&#34;infolettre&#34;&gt;Infolettre&lt;/h3&gt;

&lt;p&gt;Lorsque vous vous inscrivez à notre infolettre, vous consentez à ce que nous gardons votre adresse email afin de vous faire parvenir cette infolettre. Vous aurez la possibilité de vous retirer de notre liste d’envoie à tout moment.&lt;/p&gt;

&lt;h3 id=&#34;support-client&#34;&gt;Support client:&lt;/h3&gt;

&lt;p&gt;Dans le but d’assurer un bon suivi, nous conservons un enregistrement des communications, y compris les pièces jointes et les informations que vous décidez volontairement de partager avec nous à des fins de dépannage, chaque fois que vous communiquez avec nous.&lt;/p&gt;

&lt;h2 id=&#34;entente-lors-de-l-achat&#34;&gt;Entente lors de l&amp;rsquo;achat&lt;/h2&gt;

&lt;p&gt;Nous devrons éventuellement recueillir et stocker vos données personnelles pour remplir nos engagements contractuels envers vous. Il est par exemple possible que nous devions conserver une copie de votre adresse e-mail si cette dernière fait partie de la licence du produit que vous achetez.&lt;/p&gt;

&lt;p&gt;Pour l’instant nous faisons affaire à des sous traitant pour la vente de nos logiciel tel que l’App Store et le Play Store. dans cette situation nous ne recevons aucune donnée personnel. Si vous avez besoin de réactiver une licence de votre logiciel ou toute autre assistance de notre part, nous aurons besoin d’une preuve d’achat, tel que le reçu de vente, afin de nous assurer que vous soyez bien notre client.&lt;/p&gt;

&lt;h2 id=&#34;analytique&#34;&gt;Analytique&lt;/h2&gt;

&lt;h3 id=&#34;logiciels&#34;&gt;Logiciels&lt;/h3&gt;

&lt;p&gt;Lors de l’utilisation de nos logiciels en version bêta, nous pouvons recueillir des informations sur votre appareil tels que: le modèle, le système d’exploitation, la langue utilisée et la version du logiciel installé. Ceux-ci nous seront transmis directement par vous par email ou par la platform de test utilisé (par exemple: Apple TestFlight). Dans de tels cas, veuillez vous référer à la politique de confidentialité de cette tierce platform.&lt;/p&gt;

&lt;p&gt;Ces informations seront utilisées afin de diagnostiquer et résoudre des problèmes encourus.&lt;/p&gt;

&lt;h2 id=&#34;partage-d-information&#34;&gt;Partage d’information&lt;/h2&gt;

&lt;p&gt;Dans certaines circonstances, nous pouvons être contraint de divulguer vos renseignements personnels (obligation juridique, procédure juridique, litige, demandes déposées par les autorités publiques et gouvernementales de votre pays de résidence ou d’un autre pays).&lt;/p&gt;

&lt;p&gt;De plus, advenant une réorganisation, une fusion ou une vente, nous pourrions transférer, en tout ou en partie, les renseignements personnels recueillis au tiers concerné.&lt;/p&gt;

&lt;h2 id=&#34;contact&#34;&gt;Contact&lt;/h2&gt;

&lt;p&gt;Si vous avez des demandes concernant notre utilisation de vos informations personnelles ou toute autre question relative à vos données confidentielles, vous pouvez nous contacter en tout temps en vous rendant sur notre page Contact.&lt;/p&gt;

&lt;p&gt;Notez que le district judiciaire de Montréal (dans la municipalité de Montréal) s’applique en cas de litige.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Donate</title>
      <link>https://guillaumebarrette.com/donate/</link>
      <pubDate>Fri, 19 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/donate/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m giving many hours building tools, giving scripts and helping others online. If you or your company use any of my projects or simply like what I’m doing, please consider backing me so I can continue maintaining and evolving these projects and create new ones.&lt;/p&gt;

&lt;!-- [PayPal](https://paypal.me/GuillaumeBarrette) --&gt;

&lt;!-- &lt;img src=&#34;https://www.paypalobjects.com/webstatic/en_US/i/buttons/PP_logo_h_200x51.png&#34; alt=&#34;PayPal&#34; /&gt; --&gt;

&lt;p&gt;&lt;a href=https://paypal.me/GuillaumeBarrette&gt;
    &lt;img src=&#34;https://www.paypalobjects.com/webstatic/en_US/i/buttons/PP_logo_h_150x38.png&#34; alt=&#34;PayPal&#34; /&gt;
&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Compositions</title>
      <link>https://guillaumebarrette.com/music/compositions/</link>
      <pubDate>Wed, 10 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/music/compositions/</guid>
      <description>

&lt;h2 id=&#34;table-of-content&#34;&gt;Table of Content&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#mix-music&#34;&gt;Mix Music&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#play&#34;&gt;Play&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#résurgence&#34;&gt;Résurgence&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#a-guli&#34;&gt;A.Guli&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#acousmatic-music&#34;&gt;Acousmatic Music&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#parasite&#34;&gt;Parasite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#pulsation-symbiotique&#34;&gt;Pulsation Symbiotique&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#syncrétisme&#34;&gt;Syncrétisme&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#instrumentale-music&#34;&gt;Instrumentale Music&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#agencement-tumultueux&#34;&gt;Agencement Tumultueux&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;mix-music&#34;&gt;Mix Music&lt;/h2&gt;

&lt;h3 id=&#34;play&#34;&gt;Play&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;p&gt;Play is mainly an improvisation based on the experimentation with different sound generation and capture systems that I developed for my hyper guitar. I started the building of this guitar during the summer of 2011 to have a unique tool for playing and providing new compositional possibilities. I developed a hexaphonic sustainer system as well as one to capture the body of the instrument and the strings individually. This piece is a search on new timbres and sounds by exploring new playing techniques. Every sounds you hear is produced by the instrument and some live processing algorithms; no triggering of samples or playback track.&lt;/p&gt;

&lt;p&gt;Concert: Live at CIRMMT - Montreal - February 2013&lt;/p&gt;

&lt;div style=&#34;padding:56.25% 0 0 0;position:relative;&#34;&gt;&lt;iframe src=&#34;https://player.vimeo.com/video/60663530?portrait=0&#34; style=&#34;position:absolute;top:0;left:0;width:100%;height:100%;&#34; frameborder=&#34;0&#34; allow=&#34;autoplay; fullscreen&#34; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;!-- ### Résurgence (2012) --&gt;

&lt;h3 id=&#34;résurgence&#34;&gt;Résurgence&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;h3 id=&#34;a-guli&#34;&gt;A.Guli&lt;/h3&gt;

&lt;!-- Type: Mix music --&gt;

&lt;p&gt;Interactive composition with my acoustic guitar (2010). All the sounds is made live by transforming the sound of the guitar with a custom Max/MSP patch. The patch is also used to make a live spacialization by using algorithms or sensor (here, only algorithms since my Ipod Touch is broken).&lt;/p&gt;

&lt;p&gt;The piece is mainly made out of a directed improvisation, meaning that the form and atmospheres are established, but the parts are improvised around some ideas.&lt;/p&gt;

&lt;p&gt;Composition made for an 8 channels system, so here is a stereo rendition.&lt;/p&gt;

&lt;div style=&#34;padding:55% 0 0 0;position:relative;&#34;&gt;&lt;iframe src=&#34;https://player.vimeo.com/video/20613403?portrait=0&#34; style=&#34;position:absolute;top:0;left:0;width:100%;height:100%;&#34; frameborder=&#34;0&#34; allow=&#34;autoplay; fullscreen&#34; allowfullscreen&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;h2 id=&#34;acousmatic-music&#34;&gt;Acousmatic Music&lt;/h2&gt;

&lt;h3 id=&#34;parasite&#34;&gt;Parasite&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/15371064%3Fsecret_token%3Ds-Vepns&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;!-- ### Pulsation Symbiotique (2009) --&gt;

&lt;h3 id=&#34;pulsation-symbiotique&#34;&gt;Pulsation Symbiotique&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083391%3Fsecret_token%3Ds-BKLjt&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;!-- ### Syncrétisme (2009) --&gt;

&lt;h3 id=&#34;syncrétisme&#34;&gt;Syncrétisme&lt;/h3&gt;

&lt;!-- Type: Acousmatic --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083547%3Fsecret_token%3Ds-Rwb1j&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;h2 id=&#34;instrumentale-music&#34;&gt;Instrumentale Music&lt;/h2&gt;

&lt;h3 id=&#34;agencement-tumultueux&#34;&gt;Agencement Tumultueux&lt;/h3&gt;

&lt;!-- Type: Instrumentale --&gt;

&lt;iframe width=&#34;100%&#34; height=&#34;166&#34; scrolling=&#34;no&#34; frameborder=&#34;no&#34; allow=&#34;autoplay&#34; src=&#34;https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/10083472%3Fsecret_token%3Ds-4Kr0j&amp;color=%23ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;show_teaser=true&#34;&gt;&lt;/iframe&gt;

&lt;div class=&#34;buttond&#34;&gt;&lt;p class=&#34;buttond&#34;  style=&#34;text-align:center;&#34;&gt;&lt;a href=&#34;Https://teststore.fesh.store/index.php?route=checkout/cart&amp;product_id=12&amp;quantity=1&amp;target=checkout&#34; target=&#34;_self&#34; style=&#34;cursor: pointer; font-size:17px;  text-decoration: none; padding:10px 66px; color:#000000; background-color:#c1046a; border-radius:7px; border: 3px solid #c1046a;&#34;&gt;BUY&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;div class=&#34;buttond&#34;&gt;&lt;p class=&#34;buttond&#34;  style=&#34;text-align:center;&#34;&gt;&lt;a href=&#34;Https://teststore.fesh.store/index.php?route=checkout/cart&amp;product_id=12&amp;quantity=1&amp;target=checkout&amp;style=simplecheckout&#34; target=&#34;_self&#34; style=&#34;cursor: pointer; font-size:19px;  text-decoration: none; padding:10px 62px; color:#000000; background-color:#c1046a; border-radius:5px; border: 3px solid #c1046a;&#34;&gt;BUY&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href=&#34;https://teststore.fesh.store/index.php?route=checkout/cart&amp;amp;product_id=12&amp;amp;quantity=1&amp;amp;target=checkout&amp;amp;style=simplecheckout&#34; target=&#34;_blank&#34;&gt;https://teststore.fesh.store/index.php?route=checkout/cart&amp;amp;product_id=12&amp;amp;quantity=1&amp;amp;target=checkout&amp;amp;style=simplecheckout&lt;/a&gt;&lt;/p&gt;

&lt;!-- Script for de Vimeo Video Player --&gt;

&lt;script src=&#34;https://player.vimeo.com/api/player.js&#34;&gt;&lt;/script&gt;
</description>
    </item>
    
    <item>
      <title>SyncFrame</title>
      <link>https://guillaumebarrette.com/apps/syncframe/</link>
      <pubDate>Wed, 10 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/apps/syncframe/</guid>
      <description>&lt;p&gt;SyncFrame is an application to sync video playback on multiple devices. It is especially suited as a contemporary musical scores player.&lt;/p&gt;

&lt;!-- &lt;i class=&#34;fas fa-book&#34;&gt;&lt;/i&gt;&amp;emsp; [Documentation](./docs) --&gt;
</description>
    </item>
    
    <item>
      <title>SyncFrame</title>
      <link>https://guillaumebarrette.com/project-bk/syncframe/</link>
      <pubDate>Wed, 10 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/syncframe/</guid>
      <description>&lt;p&gt;SyncFrame is an application to sync video playback on multiple devices. It is especially suited as a contemporary musical scores player.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Alfred</title>
      <link>https://guillaumebarrette.com/_hidden/project_disabled/_indexdocs/</link>
      <pubDate>Sun, 23 Jun 2019 21:42:49 -0400</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/project_disabled/_indexdocs/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Alfred</title>
      <link>https://guillaumebarrette.com/_hidden/project_disabled/alfrednope/-index/</link>
      <pubDate>Sun, 23 Jun 2019 21:42:49 -0400</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/project_disabled/alfrednope/-index/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Project Test</title>
      <link>https://guillaumebarrette.com/project-bk/project-test/</link>
      <pubDate>Sun, 23 Jun 2019 08:52:20 -0400</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/project-test/</guid>
      <description></description>
    </item>
    
    <item>
      <title>An example preprint / working paper</title>
      <link>https://guillaumebarrette.com/publication/preprint/</link>
      <pubDate>Sun, 07 Apr 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/publication/preprint/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Slides&lt;/em&gt; button above to demo Academic&amp;rsquo;s Markdown slides feature.
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Supplementary notes can be added here, including &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;code and math&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Biography</title>
      <link>https://guillaumebarrette.com/bio/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/bio/</guid>
      <description>&lt;p&gt;Originaire de Québec, Guillaume Barrette est passionné de nouvelles technologies et de créations sonores, tout particulièrement la composition musicale, la programmation informatique et l’électronique. Il a complété une maîtrise avec mention &amp;ldquo;Exceptionnelle&amp;rdquo; en composition et création sonore à l&amp;rsquo;Université de Montréal où il a pu fusionner, expérimenter et enrichir ses connaissances dans ces domaines en concevant une guitare augmentée (hyperguitare) à des fins compositionnelles.&lt;/p&gt;

&lt;p&gt;Il a acquis une grande polyvalence au fil des ans ainsi qu&amp;rsquo;au cours de ses études dont la composition électroacoustique et la programmation informatique (Université de Montréal et McGill University, MTL), la conception de systèmes électroniques (De Montford University, UK), l&amp;rsquo;interprétation musicale et les sciences (Cégep de Sainte-Foy, QC). De plus, il a su se démarquer à plusieurs reprises comme compositeur en tant que récipiendaire du premier prix de la fondation SOCAN (Prix Hugh-Le Caine) en 2010 et troisième en 2012 et 2014, de même que finaliste au concours JTTP 2014, 2011 et 2009.&lt;/p&gt;

&lt;p&gt;Il poursuit actuellement ces recherches et développements en conception logiciels et de systèmes électroniques, tout en travaillant et collaborant avec différents ensembles et compositeurs en tant qu&amp;rsquo;exécutant électroacoustique, technicien, sonorisateur, directeur technique, programmeur informatique, concepteur en système électronique.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Display Jupyter Notebooks with Academic</title>
      <link>https://guillaumebarrette.com/post/jupyter/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/post/jupyter/</guid>
      <description>

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;from IPython.core.display import Image
Image(&#39;https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png&#39;)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;img src=&#34;./academic_0_0.png&#34; alt=&#34;png&#34; /&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;print(&amp;quot;Welcome to Academic!&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;code&gt;Welcome to Academic!
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;install-python-and-jupyter&#34;&gt;Install Python and Jupyter&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://www.anaconda.com/distribution/#download-section&#34; target=&#34;_blank&#34;&gt;Install Anaconda&lt;/a&gt; which includes Python 3 and Jupyter notebook.&lt;/p&gt;

&lt;p&gt;Otherwise, for advanced users, install Jupyter notebook with &lt;code&gt;pip3 install jupyter&lt;/code&gt;.&lt;/p&gt;

&lt;h2 id=&#34;create-a-new-blog-post-as-usual-https-sourcethemes-com-academic-docs-managing-content-create-a-blog-post&#34;&gt;Create a new blog post &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#create-a-blog-post&#34; target=&#34;_blank&#34;&gt;as usual&lt;/a&gt;&lt;/h2&gt;

&lt;p&gt;Run the following commands in your Terminal, substituting &lt;code&gt;&amp;lt;MY_WEBSITE_FOLDER&amp;gt;&lt;/code&gt; and &lt;code&gt;my-post&lt;/code&gt; with the file path to your Academic website folder and a name for your blog post (without spaces), respectively:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;cd &amp;lt;MY_WEBSITE_FOLDER&amp;gt;
hugo new  --kind post post/my-post
cd &amp;lt;MY_WEBSITE_FOLDER&amp;gt;/content/post/my-post/
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;create-or-upload-a-jupyter-notebook&#34;&gt;Create or upload a Jupyter notebook&lt;/h2&gt;

&lt;p&gt;Run the following command to start Jupyter within your new blog post folder. Then create a new Jupyter notebook (&lt;em&gt;New &amp;gt; Python Notebook&lt;/em&gt;) or upload a notebook.&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter notebook
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;convert-notebook-to-markdown&#34;&gt;Convert notebook to Markdown&lt;/h2&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter nbconvert Untitled.ipynb --to markdown --NbConvertApp.output_files_dir=.

# Copy the contents of Untitled.md and append it to index.md:
cat Untitled.md | tee -a index.md

# Remove the temporary file:
rm Untitled.md
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;edit-your-post-metadata&#34;&gt;Edit your post metadata&lt;/h2&gt;

&lt;p&gt;Open &lt;code&gt;index.md&lt;/code&gt; in your text editor and edit the title etc. in the &lt;a href=&#34;https://sourcethemes.com/academic/docs/front-matter/&#34; target=&#34;_blank&#34;&gt;front matter&lt;/a&gt; according to your preference.&lt;/p&gt;

&lt;p&gt;To set a &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#featured-image&#34; target=&#34;_blank&#34;&gt;featured image&lt;/a&gt;, place an image named &lt;code&gt;featured&lt;/code&gt; into your post&amp;rsquo;s folder.&lt;/p&gt;

&lt;p&gt;For other tips, such as using math, see the guide on &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;writing content with Academic&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Display Jupyter Notebooks with Academic</title>
      <link>https://guillaumebarrette.com/projects/jupyter/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/projects/jupyter/</guid>
      <description>

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;from IPython.core.display import Image
Image(&#39;https://www.python.org/static/community_logos/python-logo-master-v3-TM-flattened.png&#39;)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;img src=&#34;./academic_0_0.png&#34; alt=&#34;png&#34; /&gt;&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;print(&amp;quot;Welcome to Academic!&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;

&lt;pre&gt;&lt;code&gt;Welcome to Academic!
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;install-python-and-jupyter&#34;&gt;Install Python and Jupyter&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://www.anaconda.com/distribution/#download-section&#34; target=&#34;_blank&#34;&gt;Install Anaconda&lt;/a&gt; which includes Python 3 and Jupyter notebook.&lt;/p&gt;

&lt;p&gt;Otherwise, for advanced users, install Jupyter notebook with &lt;code&gt;pip3 install jupyter&lt;/code&gt;.&lt;/p&gt;

&lt;h2 id=&#34;create-a-new-blog-post-as-usual-https-sourcethemes-com-academic-docs-managing-content-create-a-blog-post&#34;&gt;Create a new blog post &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#create-a-blog-post&#34; target=&#34;_blank&#34;&gt;as usual&lt;/a&gt;&lt;/h2&gt;

&lt;p&gt;Run the following commands in your Terminal, substituting &lt;code&gt;&amp;lt;MY_WEBSITE_FOLDER&amp;gt;&lt;/code&gt; and &lt;code&gt;my-post&lt;/code&gt; with the file path to your Academic website folder and a name for your blog post (without spaces), respectively:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;cd &amp;lt;MY_WEBSITE_FOLDER&amp;gt;
hugo new  --kind post post/my-post
cd &amp;lt;MY_WEBSITE_FOLDER&amp;gt;/content/post/my-post/
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;create-or-upload-a-jupyter-notebook&#34;&gt;Create or upload a Jupyter notebook&lt;/h2&gt;

&lt;p&gt;Run the following command to start Jupyter within your new blog post folder. Then create a new Jupyter notebook (&lt;em&gt;New &amp;gt; Python Notebook&lt;/em&gt;) or upload a notebook.&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter notebook
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;convert-notebook-to-markdown&#34;&gt;Convert notebook to Markdown&lt;/h2&gt;

&lt;pre&gt;&lt;code class=&#34;language-bash&#34;&gt;jupyter nbconvert Untitled.ipynb --to markdown --NbConvertApp.output_files_dir=.

# Copy the contents of Untitled.md and append it to index.md:
cat Untitled.md | tee -a index.md

# Remove the temporary file:
rm Untitled.md
&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id=&#34;edit-your-post-metadata&#34;&gt;Edit your post metadata&lt;/h2&gt;

&lt;p&gt;Open &lt;code&gt;index.md&lt;/code&gt; in your text editor and edit the title etc. in the &lt;a href=&#34;https://sourcethemes.com/academic/docs/front-matter/&#34; target=&#34;_blank&#34;&gt;front matter&lt;/a&gt; according to your preference.&lt;/p&gt;

&lt;p&gt;To set a &lt;a href=&#34;https://sourcethemes.com/academic/docs/managing-content/#featured-image&#34; target=&#34;_blank&#34;&gt;featured image&lt;/a&gt;, place an image named &lt;code&gt;featured&lt;/code&gt; into your post&amp;rsquo;s folder.&lt;/p&gt;

&lt;p&gt;For other tips, such as using math, see the guide on &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;writing content with Academic&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Slides</title>
      <link>https://guillaumebarrette.com/slides/example/</link>
      <pubDate>Tue, 05 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/slides/example/</guid>
      <description>

&lt;h1 id=&#34;welcome-to-slides&#34;&gt;Welcome to Slides&lt;/h1&gt;

&lt;p&gt;&lt;a href=&#34;https://sourcethemes.com/academic/&#34; target=&#34;_blank&#34;&gt;Academic&lt;/a&gt;&lt;/p&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Efficiently write slides in Markdown&lt;/li&gt;
&lt;li&gt;3-in-1: Create, Present, and Publish your slides&lt;/li&gt;
&lt;li&gt;Supports speaker notes&lt;/li&gt;
&lt;li&gt;Mobile friendly slides&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;controls&#34;&gt;Controls&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Next: &lt;code&gt;Right Arrow&lt;/code&gt; or &lt;code&gt;Space&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Previous: &lt;code&gt;Left Arrow&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Start: &lt;code&gt;Home&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Finish: &lt;code&gt;End&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Overview: &lt;code&gt;Esc&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Speaker notes: &lt;code&gt;S&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Fullscreen: &lt;code&gt;F&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Zoom: &lt;code&gt;Alt + Click&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/hakimel/reveal.js#pdf-export&#34; target=&#34;_blank&#34;&gt;PDF Export&lt;/a&gt;: &lt;code&gt;E&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;code-highlighting&#34;&gt;Code Highlighting&lt;/h2&gt;

&lt;p&gt;Inline code: &lt;code&gt;variable&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Code block:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-python&#34;&gt;porridge = &amp;quot;blueberry&amp;quot;
if porridge == &amp;quot;blueberry&amp;quot;:
    print(&amp;quot;Eating...&amp;quot;)
&lt;/code&gt;&lt;/pre&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;math&#34;&gt;Math&lt;/h2&gt;

&lt;p&gt;In-line math: $x + y = z$&lt;/p&gt;

&lt;p&gt;Block math:&lt;/p&gt;

&lt;p&gt;$$
f\left( x \right) = \;\frac{{2\left( {x + 4} \right)\left( {x - 4} \right)}}{{\left( {x + 4} \right)\left( {x + 1} \right)}}
$$&lt;/p&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;fragments&#34;&gt;Fragments&lt;/h2&gt;

&lt;p&gt;Make content appear incrementally&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{{% fragment %}} One {{% /fragment %}}
{{% fragment %}} **Two** {{% /fragment %}}
{{% fragment %}} Three {{% /fragment %}}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Press &lt;code&gt;Space&lt;/code&gt; to play!&lt;/p&gt;

&lt;p&gt;&lt;span class=&#34;fragment &#34; &gt;
   One
&lt;/span&gt;
&lt;span class=&#34;fragment &#34; &gt;
   &lt;strong&gt;Two&lt;/strong&gt;
&lt;/span&gt;
&lt;span class=&#34;fragment &#34; &gt;
   Three
&lt;/span&gt;&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;A fragment can accept two optional parameters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;class&lt;/code&gt;: use a custom style (requires definition in custom CSS)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;weight&lt;/code&gt;: sets the order in which a fragment appears&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;speaker-notes&#34;&gt;Speaker Notes&lt;/h2&gt;

&lt;p&gt;Add speaker notes to your presentation&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;{{% speaker_note %}}
- Only the speaker can read these notes
- Press `S` key to view
{{% /speaker_note %}}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Press the &lt;code&gt;S&lt;/code&gt; key to view the speaker notes!&lt;/p&gt;

&lt;aside class=&#34;notes&#34;&gt;
  &lt;ul&gt;
&lt;li&gt;Only the speaker can read these notes&lt;/li&gt;
&lt;li&gt;Press &lt;code&gt;S&lt;/code&gt; key to view&lt;/li&gt;
&lt;/ul&gt;
&lt;/aside&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;themes&#34;&gt;Themes&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;black: Black background, white text, blue links (default)&lt;/li&gt;
&lt;li&gt;white: White background, black text, blue links&lt;/li&gt;
&lt;li&gt;league: Gray background, white text, blue links&lt;/li&gt;
&lt;li&gt;beige: Beige background, dark text, brown links&lt;/li&gt;
&lt;li&gt;sky: Blue background, thin dark text, blue links&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;

&lt;ul&gt;
&lt;li&gt;night: Black background, thick white text, orange links&lt;/li&gt;
&lt;li&gt;serif: Cappuccino background, gray text, brown links&lt;/li&gt;
&lt;li&gt;simple: White background, black text, blue links&lt;/li&gt;
&lt;li&gt;solarized: Cream-colored background, dark green text, blue links&lt;/li&gt;
&lt;/ul&gt;

&lt;hr /&gt;


&lt;section data-noprocess data-shortcode-slide
  
      
      data-background-image=&#34;/img/boards.jpg&#34;
  &gt;


&lt;h2 id=&#34;custom-slide&#34;&gt;Custom Slide&lt;/h2&gt;

&lt;p&gt;Customize the slide style and background&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-markdown&#34;&gt;{{&amp;lt; slide background-image=&amp;quot;/img/boards.jpg&amp;quot; &amp;gt;}}
{{&amp;lt; slide background-color=&amp;quot;#0000FF&amp;quot; &amp;gt;}}
{{&amp;lt; slide class=&amp;quot;my-style&amp;quot; &amp;gt;}}
&lt;/code&gt;&lt;/pre&gt;

&lt;hr /&gt;

&lt;h2 id=&#34;custom-css-example&#34;&gt;Custom CSS Example&lt;/h2&gt;

&lt;p&gt;Let&amp;rsquo;s make headers navy colored.&lt;/p&gt;

&lt;p&gt;Create &lt;code&gt;assets/css/reveal_custom.css&lt;/code&gt; with:&lt;/p&gt;

&lt;pre&gt;&lt;code class=&#34;language-css&#34;&gt;.reveal section h1,
.reveal section h2,
.reveal section h3 {
  color: navy;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;hr /&gt;

&lt;h1 id=&#34;questions&#34;&gt;Questions?&lt;/h1&gt;

&lt;p&gt;&lt;a href=&#34;https://discourse.gohugo.io&#34; target=&#34;_blank&#34;&gt;Ask&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/&#34; target=&#34;_blank&#34;&gt;Documentation&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Alfred Project</title>
      <link>https://guillaumebarrette.com/projectsafsa/</link>
      <pubDate>Sun, 09 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/projectsafsa/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Alfred Tools</title>
      <link>https://guillaumebarrette.com/project-bk/alfred-redirect/</link>
      <pubDate>Wed, 27 Apr 2016 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/alfred-redirect/</guid>
      <description></description>
    </item>
    
    <item>
      <title>External Project</title>
      <link>https://guillaumebarrette.com/project-bk/external-project/</link>
      <pubDate>Wed, 27 Apr 2016 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/external-project/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Internal Project</title>
      <link>https://guillaumebarrette.com/project-bk/internal-project/</link>
      <pubDate>Wed, 27 Apr 2016 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/project-bk/internal-project/</guid>
      <description>&lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellus ac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. Quisque risus orci, mollis id ante sit amet, gravida egestas nisl. Sed ac tempus magna. Proin in dui enim. Donec condimentum, sem id dapibus fringilla, tellus enim condimentum arcu, nec volutpat est felis vel metus. Vestibulum sit amet erat at nulla eleifend gravida.&lt;/p&gt;

&lt;p&gt;Nullam vel molestie justo. Curabitur vitae efficitur leo. In hac habitasse platea dictumst. Sed pulvinar mauris dui, eget varius purus congue ac. Nulla euismod, lorem vel elementum dapibus, nunc justo porta mi, sed tempus est est vel tellus. Nam et enim eleifend, laoreet sem sit amet, elementum sem. Morbi ut leo congue, maximus velit ut, finibus arcu. In et libero cursus, rutrum risus non, molestie leo. Nullam congue quam et volutpat malesuada. Sed risus tortor, pulvinar et dictum nec, sodales non mi. Phasellus lacinia commodo laoreet. Nam mollis, erat in feugiat consectetur, purus eros egestas tellus, in auctor urna odio at nibh. Mauris imperdiet nisi ac magna convallis, at rhoncus ligula cursus.&lt;/p&gt;

&lt;p&gt;Cras aliquam rhoncus ipsum, in hendrerit nunc mattis vitae. Duis vitae efficitur metus, ac tempus leo. Cras nec fringilla lacus. Quisque sit amet risus at ipsum pharetra commodo. Sed aliquam mauris at consequat eleifend. Praesent porta, augue sed viverra bibendum, neque ante euismod ante, in vehicula justo lorem ac eros. Suspendisse augue libero, venenatis eget tincidunt ut, malesuada at lorem. Donec vitae bibendum arcu. Aenean maximus nulla non pretium iaculis. Quisque imperdiet, nulla in pulvinar aliquet, velit quam ultrices quam, sit amet fringilla leo sem vel nunc. Mauris in lacinia lacus.&lt;/p&gt;

&lt;p&gt;Suspendisse a tincidunt lacus. Curabitur at urna sagittis, dictum ante sit amet, euismod magna. Sed rutrum massa id tortor commodo, vitae elementum turpis tempus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean purus turpis, venenatis a ullamcorper nec, tincidunt et massa. Integer posuere quam rutrum arcu vehicula imperdiet. Mauris ullamcorper quam vitae purus congue, quis euismod magna eleifend. Vestibulum semper vel augue eget tincidunt. Fusce eget justo sodales, dapibus odio eu, ultrices lorem. Duis condimentum lorem id eros commodo, in facilisis mauris scelerisque. Morbi sed auctor leo. Nullam volutpat a lacus quis pharetra. Nulla congue rutrum magna a ornare.&lt;/p&gt;

&lt;p&gt;Aliquam in turpis accumsan, malesuada nibh ut, hendrerit justo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Quisque sed erat nec justo posuere suscipit. Donec ut efficitur arcu, in malesuada neque. Nunc dignissim nisl massa, id vulputate nunc pretium nec. Quisque eget urna in risus suscipit ultricies. Pellentesque odio odio, tincidunt in eleifend sed, posuere a diam. Nam gravida nisl convallis semper elementum. Morbi vitae felis faucibus, vulputate orci placerat, aliquet nisi. Aliquam erat volutpat. Maecenas sagittis pulvinar purus, sed porta quam laoreet at.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Academic: the website builder for Hugo</title>
      <link>https://guillaumebarrette.com/post/getting-started/</link>
      <pubDate>Wed, 20 Apr 2016 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/post/getting-started/</guid>
      <description>

&lt;p&gt;&lt;strong&gt;Create a free website with Academic using Markdown, Jupyter, or RStudio. Choose a beautiful color theme and build anything with the Page Builder - over 40 &lt;em&gt;widgets&lt;/em&gt;, &lt;em&gt;themes&lt;/em&gt;, and &lt;em&gt;language packs&lt;/em&gt; included!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34;&gt;Check out the latest &lt;strong&gt;demo&lt;/strong&gt;&lt;/a&gt; of what you&amp;rsquo;ll get in less than 10 minutes, or &lt;a href=&#34;https://sourcethemes.com/academic/#expo&#34; target=&#34;_blank&#34;&gt;view the &lt;strong&gt;showcase&lt;/strong&gt;&lt;/a&gt; of personal, project, and business sites.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#install&#34;&gt;&lt;strong&gt;Setup Academic&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/get-started/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Get Started&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/&#34; target=&#34;_blank&#34;&gt;View the documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://discuss.gohugo.io/&#34; target=&#34;_blank&#34;&gt;Ask a question&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/gcushen/hugo-academic/issues&#34; target=&#34;_blank&#34;&gt;Request a feature or report a bug&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Updating? View the &lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34;&gt;Update Guide&lt;/a&gt; and &lt;a href=&#34;https://sourcethemes.com/academic/updates/&#34; target=&#34;_blank&#34;&gt;Release Notes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Support development of Academic:

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://paypal.me/cushen&#34; target=&#34;_blank&#34;&gt;Donate a coffee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.patreon.com/cushen&#34; target=&#34;_blank&#34;&gt;Become a backer on Patreon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.redbubble.com/people/neutreno/works/34387919-academic&#34; target=&#34;_blank&#34;&gt;Decorate your laptop or journal with an Academic sticker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://academic.threadless.com/&#34; target=&#34;_blank&#34;&gt;Wear the T-shirt&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&#34;https://github.com/gcushen/hugo-academic/&#34; target=&#34;_blank&#34;&gt;&lt;img src=&#34;https://raw.githubusercontent.com/gcushen/hugo-academic/master/academic.png&#34; alt=&#34;Screenshot&#34; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Page builder&lt;/strong&gt; - Create &lt;em&gt;anything&lt;/em&gt; with &lt;a href=&#34;https://sourcethemes.com/academic/docs/page-builder/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;widgets&lt;/strong&gt;&lt;/a&gt; and &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;elements&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Edit any type of content&lt;/strong&gt; - Blog posts, publications, talks, slides, projects, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create content&lt;/strong&gt; in &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Markdown&lt;/strong&gt;&lt;/a&gt;, &lt;a href=&#34;https://sourcethemes.com/academic/docs/jupyter/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Jupyter&lt;/strong&gt;&lt;/a&gt;, or &lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Plugin System&lt;/strong&gt; - Fully customizable &lt;a href=&#34;https://sourcethemes.com/academic/themes/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;color&lt;/strong&gt; and &lt;strong&gt;font themes&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Display Code and Math&lt;/strong&gt; - Code highlighting and &lt;a href=&#34;https://en.wikibooks.org/wiki/LaTeX/Mathematics&#34; target=&#34;_blank&#34;&gt;LaTeX math&lt;/a&gt; supported&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Integrations&lt;/strong&gt; - &lt;a href=&#34;https://analytics.google.com&#34; target=&#34;_blank&#34;&gt;Google Analytics&lt;/a&gt;, &lt;a href=&#34;https://disqus.com&#34; target=&#34;_blank&#34;&gt;Disqus commenting&lt;/a&gt;, Maps, Contact Forms, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Beautiful Site&lt;/strong&gt; - Simple and refreshing one page design&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Industry-Leading SEO&lt;/strong&gt; - Help get your website found on search engines and social media&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Media Galleries&lt;/strong&gt; - Display your images and videos with captions in a customizable gallery&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mobile Friendly&lt;/strong&gt; - Look amazing on every screen with a mobile friendly version of your site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-language&lt;/strong&gt; - 15+ language packs including English, 中文, and Português&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-user&lt;/strong&gt; - Each author gets their own profile page&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Privacy Pack&lt;/strong&gt; - Assists with GDPR&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stand Out&lt;/strong&gt; - Bring your site to life with animation, parallax backgrounds, and scroll effects&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One-Click Deployment&lt;/strong&gt; - No servers. No databases. Only files.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;color-themes&#34;&gt;Color Themes&lt;/h2&gt;

&lt;p&gt;Academic comes with &lt;strong&gt;day (light) and night (dark) mode&lt;/strong&gt; built-in. Click the sun/moon icon in the top right of the &lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34;&gt;Demo&lt;/a&gt; to see it in action!&lt;/p&gt;

&lt;p&gt;Choose a stunning color and font theme for your site. Themes are fully customizable and include:&lt;/p&gt;









  
  


&lt;div class=&#34;gallery&#34;&gt;

  
  
  
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-1950s.png&#34; data-caption=&#34;1950s&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-apogee.png&#34; data-caption=&#34;Apogee&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-coffee-playfair.png&#34; data-caption=&#34;Coffee theme with Playfair font&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-dark.png&#34; data-caption=&#34;Dark&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-default.png&#34; data-caption=&#34;Default&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-forest.png&#34; data-caption=&#34;Forest&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-ocean.png&#34; data-caption=&#34;Ocean&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-strawberry.png&#34; data-caption=&#34;Strawberry&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/post/getting-started/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  

  
&lt;/div&gt;

&lt;h2 id=&#34;ecosystem&#34;&gt;Ecosystem&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://github.com/sourcethemes/academic-admin&#34; target=&#34;_blank&#34;&gt;Academic Admin&lt;/a&gt;:&lt;/strong&gt; An admin tool to import publications from BibTeX or import assets for an offline site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://github.com/sourcethemes/academic-scripts&#34; target=&#34;_blank&#34;&gt;Academic Scripts&lt;/a&gt;:&lt;/strong&gt; Scripts to help migrate content to new versions of Academic&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;install&#34;&gt;Install&lt;/h2&gt;

&lt;p&gt;You can choose from one of the following four methods to install:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-web-browser&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;one-click install using your web browser (recommended)&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-git&#34; target=&#34;_blank&#34;&gt;install on your computer using &lt;strong&gt;Git&lt;/strong&gt; with the Command Prompt/Terminal app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-zip&#34; target=&#34;_blank&#34;&gt;install on your computer by downloading the &lt;strong&gt;ZIP files&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34;&gt;install on your computer with &lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then &lt;a href=&#34;https://sourcethemes.com/academic/docs/get-started/&#34; target=&#34;_blank&#34;&gt;personalize and deploy your new site&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&#34;updating&#34;&gt;Updating&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34;&gt;View the Update Guide&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to &lt;em&gt;star&lt;/em&gt; the project on &lt;a href=&#34;https://github.com/gcushen/hugo-academic/&#34; target=&#34;_blank&#34;&gt;Github&lt;/a&gt; to help keep track of &lt;a href=&#34;https://sourcethemes.com/academic/updates&#34; target=&#34;_blank&#34;&gt;updates&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&#34;license&#34;&gt;License&lt;/h2&gt;

&lt;p&gt;Copyright 2016-present &lt;a href=&#34;https://georgecushen.com&#34; target=&#34;_blank&#34;&gt;George Cushen&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Released under the &lt;a href=&#34;https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md&#34; target=&#34;_blank&#34;&gt;MIT&lt;/a&gt; license.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Academic: the website builder for Hugo</title>
      <link>https://guillaumebarrette.com/projects/getting-started/</link>
      <pubDate>Wed, 20 Apr 2016 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/projects/getting-started/</guid>
      <description>

&lt;p&gt;&lt;strong&gt;Create a free website with Academic using Markdown, Jupyter, or RStudio. Choose a beautiful color theme and build anything with the Page Builder - over 40 &lt;em&gt;widgets&lt;/em&gt;, &lt;em&gt;themes&lt;/em&gt;, and &lt;em&gt;language packs&lt;/em&gt; included!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34;&gt;Check out the latest &lt;strong&gt;demo&lt;/strong&gt;&lt;/a&gt; of what you&amp;rsquo;ll get in less than 10 minutes, or &lt;a href=&#34;https://sourcethemes.com/academic/#expo&#34; target=&#34;_blank&#34;&gt;view the &lt;strong&gt;showcase&lt;/strong&gt;&lt;/a&gt; of personal, project, and business sites.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#install&#34;&gt;&lt;strong&gt;Setup Academic&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/get-started/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Get Started&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/&#34; target=&#34;_blank&#34;&gt;View the documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://discuss.gohugo.io/&#34; target=&#34;_blank&#34;&gt;Ask a question&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/gcushen/hugo-academic/issues&#34; target=&#34;_blank&#34;&gt;Request a feature or report a bug&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Updating? View the &lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34;&gt;Update Guide&lt;/a&gt; and &lt;a href=&#34;https://sourcethemes.com/academic/updates/&#34; target=&#34;_blank&#34;&gt;Release Notes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Support development of Academic:

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://paypal.me/cushen&#34; target=&#34;_blank&#34;&gt;Donate a coffee&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.patreon.com/cushen&#34; target=&#34;_blank&#34;&gt;Become a backer on Patreon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.redbubble.com/people/neutreno/works/34387919-academic&#34; target=&#34;_blank&#34;&gt;Decorate your laptop or journal with an Academic sticker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://academic.threadless.com/&#34; target=&#34;_blank&#34;&gt;Wear the T-shirt&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&#34;https://github.com/gcushen/hugo-academic/&#34; target=&#34;_blank&#34;&gt;&lt;img src=&#34;https://raw.githubusercontent.com/gcushen/hugo-academic/master/academic.png&#34; alt=&#34;Screenshot&#34; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Page builder&lt;/strong&gt; - Create &lt;em&gt;anything&lt;/em&gt; with &lt;a href=&#34;https://sourcethemes.com/academic/docs/page-builder/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;widgets&lt;/strong&gt;&lt;/a&gt; and &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;elements&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Edit any type of content&lt;/strong&gt; - Blog posts, publications, talks, slides, projects, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create content&lt;/strong&gt; in &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Markdown&lt;/strong&gt;&lt;/a&gt;, &lt;a href=&#34;https://sourcethemes.com/academic/docs/jupyter/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;Jupyter&lt;/strong&gt;&lt;/a&gt;, or &lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Plugin System&lt;/strong&gt; - Fully customizable &lt;a href=&#34;https://sourcethemes.com/academic/themes/&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;color&lt;/strong&gt; and &lt;strong&gt;font themes&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Display Code and Math&lt;/strong&gt; - Code highlighting and &lt;a href=&#34;https://en.wikibooks.org/wiki/LaTeX/Mathematics&#34; target=&#34;_blank&#34;&gt;LaTeX math&lt;/a&gt; supported&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Integrations&lt;/strong&gt; - &lt;a href=&#34;https://analytics.google.com&#34; target=&#34;_blank&#34;&gt;Google Analytics&lt;/a&gt;, &lt;a href=&#34;https://disqus.com&#34; target=&#34;_blank&#34;&gt;Disqus commenting&lt;/a&gt;, Maps, Contact Forms, and more!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Beautiful Site&lt;/strong&gt; - Simple and refreshing one page design&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Industry-Leading SEO&lt;/strong&gt; - Help get your website found on search engines and social media&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Media Galleries&lt;/strong&gt; - Display your images and videos with captions in a customizable gallery&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mobile Friendly&lt;/strong&gt; - Look amazing on every screen with a mobile friendly version of your site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-language&lt;/strong&gt; - 15+ language packs including English, 中文, and Português&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Multi-user&lt;/strong&gt; - Each author gets their own profile page&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Privacy Pack&lt;/strong&gt; - Assists with GDPR&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stand Out&lt;/strong&gt; - Bring your site to life with animation, parallax backgrounds, and scroll effects&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One-Click Deployment&lt;/strong&gt; - No servers. No databases. Only files.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;color-themes&#34;&gt;Color Themes&lt;/h2&gt;

&lt;p&gt;Academic comes with &lt;strong&gt;day (light) and night (dark) mode&lt;/strong&gt; built-in. Click the sun/moon icon in the top right of the &lt;a href=&#34;https://academic-demo.netlify.com/&#34; target=&#34;_blank&#34;&gt;Demo&lt;/a&gt; to see it in action!&lt;/p&gt;

&lt;p&gt;Choose a stunning color and font theme for your site. Themes are fully customizable and include:&lt;/p&gt;









  
  


&lt;div class=&#34;gallery&#34;&gt;

  
  
  
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-1950s.png&#34; data-caption=&#34;1950s&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-1950s_huaf5482f8cea0c5a703a328640e3b7509_21614_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-apogee.png&#34; data-caption=&#34;Apogee&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-apogee_hu4b45d99db97150df01464c393bfd17d4_24119_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-coffee-playfair.png&#34; data-caption=&#34;Coffee theme with Playfair font&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-coffee-playfair_hu446a8f670cc5622adcc77b97ba95f6c5_22462_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-dark.png&#34; data-caption=&#34;Dark&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-dark_hu1e8601ecc47f58eada7743fdcd709d3d_21456_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-default.png&#34; data-caption=&#34;Default&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-default_huba6228b7bdf30e2f03f12ea91b2cba0d_21751_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-forest.png&#34; data-caption=&#34;Forest&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-forest_hu4f093a1c683134431456584193ea41ee_21797_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-ocean.png&#34; data-caption=&#34;Ocean&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-ocean_hu14831ccafc2219f30a7a096fa7617e01_21760_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  
    
    
    
    
    
      
        
      
    
  &lt;a data-fancybox=&#34;gallery-gallery&#34; href=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-strawberry.png&#34; data-caption=&#34;Strawberry&#34;&gt;
  &lt;img src=&#34;https://guillaumebarrette.com/projects/getting-started/gallery/theme-strawberry_hu36b0b347fcca08bd39e2df22dcedbdfb_39532_0x190_resize_lanczos_2.png&#34; alt=&#34;&#34;&gt;
  &lt;/a&gt;
  

  
&lt;/div&gt;

&lt;h2 id=&#34;ecosystem&#34;&gt;Ecosystem&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://github.com/sourcethemes/academic-admin&#34; target=&#34;_blank&#34;&gt;Academic Admin&lt;/a&gt;:&lt;/strong&gt; An admin tool to import publications from BibTeX or import assets for an offline site&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a href=&#34;https://github.com/sourcethemes/academic-scripts&#34; target=&#34;_blank&#34;&gt;Academic Scripts&lt;/a&gt;:&lt;/strong&gt; Scripts to help migrate content to new versions of Academic&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;install&#34;&gt;Install&lt;/h2&gt;

&lt;p&gt;You can choose from one of the following four methods to install:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-web-browser&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;one-click install using your web browser (recommended)&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-git&#34; target=&#34;_blank&#34;&gt;install on your computer using &lt;strong&gt;Git&lt;/strong&gt; with the Command Prompt/Terminal app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-zip&#34; target=&#34;_blank&#34;&gt;install on your computer by downloading the &lt;strong&gt;ZIP files&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/install/#install-with-rstudio&#34; target=&#34;_blank&#34;&gt;install on your computer with &lt;strong&gt;RStudio&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then &lt;a href=&#34;https://sourcethemes.com/academic/docs/get-started/&#34; target=&#34;_blank&#34;&gt;personalize and deploy your new site&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&#34;updating&#34;&gt;Updating&lt;/h2&gt;

&lt;p&gt;&lt;a href=&#34;https://sourcethemes.com/academic/docs/update/&#34; target=&#34;_blank&#34;&gt;View the Update Guide&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feel free to &lt;em&gt;star&lt;/em&gt; the project on &lt;a href=&#34;https://github.com/gcushen/hugo-academic/&#34; target=&#34;_blank&#34;&gt;Github&lt;/a&gt; to help keep track of &lt;a href=&#34;https://sourcethemes.com/academic/updates&#34; target=&#34;_blank&#34;&gt;updates&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&#34;license&#34;&gt;License&lt;/h2&gt;

&lt;p&gt;Copyright 2016-present &lt;a href=&#34;https://georgecushen.com&#34; target=&#34;_blank&#34;&gt;George Cushen&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Released under the &lt;a href=&#34;https://github.com/gcushen/hugo-academic/blob/master/LICENSE.md&#34; target=&#34;_blank&#34;&gt;MIT&lt;/a&gt; license.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>An example journal article</title>
      <link>https://guillaumebarrette.com/publication/journal-article/</link>
      <pubDate>Tue, 01 Sep 2015 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/publication/journal-article/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Cite&lt;/em&gt; button above to demo the feature to enable visitors to import publication metadata into their reference management software.
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Slides&lt;/em&gt; button above to demo Academic&amp;rsquo;s Markdown slides feature.
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Supplementary notes can be added here, including &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;code and math&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>An example conference paper</title>
      <link>https://guillaumebarrette.com/publication/conference-paper/</link>
      <pubDate>Mon, 01 Jul 2013 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/publication/conference-paper/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Cite&lt;/em&gt; button above to demo the feature to enable visitors to import publication metadata into their reference management software.
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Click the &lt;em&gt;Slides&lt;/em&gt; button above to demo Academic&amp;rsquo;s Markdown slides feature.
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;Supplementary notes can be added here, including &lt;a href=&#34;https://sourcethemes.com/academic/docs/writing-markdown-latex/&#34; target=&#34;_blank&#34;&gt;code and math&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://guillaumebarrette.com/projectwidget/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/projectwidget/</guid>
      <description></description>
    </item>
    
    <item>
      <title></title>
      <link>https://guillaumebarrette.com/rss/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/rss/</guid>
      <description>

&lt;h1 id=&#34;rss-feeds&#34;&gt;RSS Feeds&lt;/h1&gt;

&lt;!-- [Main](/index.xml) --&gt;

&lt;p&gt;Follow me with your RSS feed reader to be informed when I&amp;rsquo;m adding new contents to my website&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://guillaumebarrette.com/post/index.xml&#34;&gt;Posts&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://guillaumebarrette.com/project/index.xml&#34;&gt;Projects&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Audio</title>
      <link>https://guillaumebarrette.com/music/_index-nope/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/music/_index-nope/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Contact</title>
      <link>https://guillaumebarrette.com/contact/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/contact/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Projects</title>
      <link>https://guillaumebarrette.com/_hidden/project_disabled/-index/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>https://guillaumebarrette.com/_hidden/project_disabled/-index/</guid>
      <description></description>
    </item>
    
  </channel>
</rss>
