mirror of
https://github.com/SqrtMinusOne/sqrtminusone.github.io.git
synced 2025-12-10 15:53:03 +03:00
deploy: 493fc0318a
This commit is contained in:
parent
fa01eaee38
commit
0199225174
11 changed files with 444 additions and 149 deletions
|
|
@ -21,9 +21,9 @@
|
|||
<p><code>atuin</code> stores shell history in a database, which allows for having the same history across multiple shells, sessions, and optionally across different machines. See the project page for the complete list of features.</p>
|
||||
<p>This package provides functionality to store and browse eshell history in <code>atuin</code>.</p>
|
||||
<h2 id="installation">Installation</h2>
|
||||
<p>The package isn&rsquo;t yet available anywhere but in this repository. My preferred way for such cases is <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>.</p>
|
||||
<p>The package is available on MELPA. Install it however you normally install packages, I prefer <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-emacs-lisp" data-lang="emacs-lisp"><span style="display:flex;"><span>(<span style="color:#008000">use-package</span> <span style="color:#19177c">eshell-atuin</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> (<span style="color:#008000">:host</span> <span style="color:#19177c">github</span> <span style="color:#008000">:repo</span> <span style="color:#ba2121">&#34;SqrtMinusOne/eshell-atuin&#34;</span>)
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> <span style="color:#800">t</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:after</span> <span style="color:#19177c">eshell</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:config</span>
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#19177c">eshell-atuin-mode</span>))
|
||||
|
|
@ -1202,7 +1202,7 @@ Customize the formatting of these records through <code>org-clock-agg-elem
|
|||
</span></span><span style="display:flex;"><span> <span style="color:#666">&#39;</span>((<span style="color:#ba2121">&#34;Helsinki, Finland&#34;</span> <span style="color:#666">60.16952</span> <span style="color:#666">24.93545</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">&#34;Berlin, Germany&#34;</span> <span style="color:#666">52.52437</span> <span style="color:#666">13.41053</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">&#34;Dubai, UAE&#34;</span> <span style="color:#666">25.0657</span> <span style="color:#666">55.17128</span>)))
|
||||
</span></span></code></pre></div><p>A timezone is also often required (&ldquo;Settings&rdquo; &gt; &ldquo;Timezone&rdquo;).</p>
|
||||
</span></span></code></pre></div><p>A timezone (&ldquo;Settings&rdquo; &gt; &ldquo;Timezone&rdquo;) may not be required, but be sure to set it because <strong>the default one is UTC+0</strong>.</p>
|
||||
<p>The current group is switched with <code>&lt;tab&gt;</code>. Each group&rsquo;s section has a set of variables that can be toggled on and off, such as temperature, precipitation, etc. Check out the <a href="https://open-meteo.com/en/docs">API docs</a> if you&rsquo;re interested in the meaning of more esoteric ones.</p>
|
||||
<p>Press <code>RET</code> after you&rsquo;ve configured the query to call the API. If something goes wrong, it will output an error, such as:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-text" data-lang="text"><span style="display:flex;"><span>Open Meteo has returned an error.
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@
|
|||
</span></span><span style="display:flex;"><span> <span style="color:#666">'</span>((<span style="color:#ba2121">"Helsinki, Finland"</span> <span style="color:#666">60.16952</span> <span style="color:#666">24.93545</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">"Berlin, Germany"</span> <span style="color:#666">52.52437</span> <span style="color:#666">13.41053</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">"Dubai, UAE"</span> <span style="color:#666">25.0657</span> <span style="color:#666">55.17128</span>)))
|
||||
</span></span></code></pre></div><p>A timezone is also often required (“Settings” > “Timezone”).</p>
|
||||
</span></span></code></pre></div><p>A timezone (“Settings” > “Timezone”) may not be required, but be sure to set it because <strong>the default one is UTC+0</strong>.</p>
|
||||
<p>The current group is switched with <code><tab></code>. Each group’s section has a set of variables that can be toggled on and off, such as temperature, precipitation, etc. Check out the <a href="https://open-meteo.com/en/docs">API docs</a> if you’re interested in the meaning of more esoteric ones.</p>
|
||||
<p>Press <code>RET</code> after you’ve configured the query to call the API. If something goes wrong, it will output an error, such as:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-text" data-lang="text"><span style="display:flex;"><span>Open Meteo has returned an error.
|
||||
|
|
|
|||
|
|
@ -90,9 +90,9 @@
|
|||
<p><code>atuin</code> stores shell history in a database, which allows for having the same history across multiple shells, sessions, and optionally across different machines. See the project page for the complete list of features.</p>
|
||||
<p>This package provides functionality to store and browse eshell history in <code>atuin</code>.</p>
|
||||
<h2 id="installation">Installation</h2>
|
||||
<p>The package isn’t yet available anywhere but in this repository. My preferred way for such cases is <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>.</p>
|
||||
<p>The package is available on MELPA. Install it however you normally install packages, I prefer <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-emacs-lisp" data-lang="emacs-lisp"><span style="display:flex;"><span>(<span style="color:#008000">use-package</span> <span style="color:#19177c">eshell-atuin</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> (<span style="color:#008000">:host</span> <span style="color:#19177c">github</span> <span style="color:#008000">:repo</span> <span style="color:#ba2121">"SqrtMinusOne/eshell-atuin"</span>)
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> <span style="color:#800">t</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:after</span> <span style="color:#19177c">eshell</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:config</span>
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#19177c">eshell-atuin-mode</span>))
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
<p><code>atuin</code> stores shell history in a database, which allows for having the same history across multiple shells, sessions, and optionally across different machines. See the project page for the complete list of features.</p>
|
||||
<p>This package provides functionality to store and browse eshell history in <code>atuin</code>.</p>
|
||||
<h2 id="installation">Installation</h2>
|
||||
<p>The package isn&rsquo;t yet available anywhere but in this repository. My preferred way for such cases is <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>.</p>
|
||||
<p>The package is available on MELPA. Install it however you normally install packages, I prefer <a href="https://github.com/jwiegley/use-package">use-package</a> and <a href="https://github.com/radian-software/straight.el">straight.el</a>:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-emacs-lisp" data-lang="emacs-lisp"><span style="display:flex;"><span>(<span style="color:#008000">use-package</span> <span style="color:#19177c">eshell-atuin</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> (<span style="color:#008000">:host</span> <span style="color:#19177c">github</span> <span style="color:#008000">:repo</span> <span style="color:#ba2121">&#34;SqrtMinusOne/eshell-atuin&#34;</span>)
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:straight</span> <span style="color:#800">t</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:after</span> <span style="color:#19177c">eshell</span>
|
||||
</span></span><span style="display:flex;"><span> <span style="color:#008000">:config</span>
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#19177c">eshell-atuin-mode</span>))
|
||||
|
|
@ -384,7 +384,7 @@ Customize the formatting of these records through <code>org-clock-agg-elem
|
|||
</span></span><span style="display:flex;"><span> <span style="color:#666">&#39;</span>((<span style="color:#ba2121">&#34;Helsinki, Finland&#34;</span> <span style="color:#666">60.16952</span> <span style="color:#666">24.93545</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">&#34;Berlin, Germany&#34;</span> <span style="color:#666">52.52437</span> <span style="color:#666">13.41053</span>)
|
||||
</span></span><span style="display:flex;"><span> (<span style="color:#ba2121">&#34;Dubai, UAE&#34;</span> <span style="color:#666">25.0657</span> <span style="color:#666">55.17128</span>)))
|
||||
</span></span></code></pre></div><p>A timezone is also often required (&ldquo;Settings&rdquo; &gt; &ldquo;Timezone&rdquo;).</p>
|
||||
</span></span></code></pre></div><p>A timezone (&ldquo;Settings&rdquo; &gt; &ldquo;Timezone&rdquo;) may not be required, but be sure to set it because <strong>the default one is UTC+0</strong>.</p>
|
||||
<p>The current group is switched with <code>&lt;tab&gt;</code>. Each group&rsquo;s section has a set of variables that can be toggled on and off, such as temperature, precipitation, etc. Check out the <a href="https://open-meteo.com/en/docs">API docs</a> if you&rsquo;re interested in the meaning of more esoteric ones.</p>
|
||||
<p>Press <code>RET</code> after you&rsquo;ve configured the query to call the API. If something goes wrong, it will output an error, such as:</p>
|
||||
<div class="highlight"><pre tabindex="0" style=";-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-text" data-lang="text"><span style="display:flex;"><span>Open Meteo has returned an error.
|
||||
|
|
|
|||
BIN
sass/fonts/inconsolatalgc-scaled-down.ttf
Normal file
BIN
sass/fonts/inconsolatalgc-scaled-down.ttf
Normal file
Binary file not shown.
BIN
sass/fonts/inconsolatalgc-scaled-down.woff2
Normal file
BIN
sass/fonts/inconsolatalgc-scaled-down.woff2
Normal file
Binary file not shown.
2
sass/researcher.min.css
vendored
2
sass/researcher.min.css
vendored
|
|
@ -1 +1 @@
|
|||
#content a,.nav-link{color:#dc3545;text-decoration:none}#content a *,.nav-link *{color:#dc3545}#content a:hover,.nav-link:hover{color:#dc3545;text-decoration:underline}#footer a,.navbar-brand{color:#222;text-decoration:none}#footer a *,.navbar-brand *{color:#222}#footer a:hover,.navbar-brand:hover{color:#222;text-decoration:underline}#content table td,#content table th{border:1px solid #ccc;padding:6px 12px;text-align:left}*{color:#222;font-family:Inconsolata;line-height:1.2}.root{display:flex;flex-direction:column}.table-of-contents{order:0}.table-of-contents ul{padding-left:1rem!important}.table-of-contents ul>li{margin-left:.3em!important}.table-of-contents a.active{font-weight:700}.table-of-contents a:hover{cursor:pointer}@media(max-width:578px){.table-of-contents{align-self:center}}.container{max-width:750px;order:1}#title-large-screen{display:none}#title-small-screen{margin-left:15px!important}@media(max-width:578px){#title-small-screen{align-self:center}}@media(max-width:1125px){.root{margin-right:auto;margin-left:auto;width:100%;max-width:750px}.table-of-contents{padding-left:15px;padding-right:15px}}@media(min-width:1275px){.root{margin-left:calc((100vw - 750px)/2)}#actual-content{margin:0}}@media(min-width:1125px){.root{flex-direction:row}.table-of-contents{width:350px;order:2;position:sticky;top:0;padding:1em;align-self:start;scrollbar-width:thin}.table-of-contents .table-of-contents-text{overflow-x:hidden;overflow-y:auto;max-height:calc(100vh - 155px)}.table-of-contents .hidden{display:none}#title-small-screen{display:none}#title-large-screen{display:block}}.navbar-brand{font-size:2rem}#content p{margin-bottom:.6rem}#content h1,#content h2,#content h3,#content h4,#content h5,#content h6{font-size:medium;font-weight:700;margin:1rem 0 .6rem}#content h1{font-size:1.8rem}#content h2{font-size:1.6rem}#content h3{font-size:1.4rem}#content h4{font-size:1.2rem}#content img{display:block;margin:1rem auto;max-width:100%}#content a>img{margin:1rem 4px 1rem 0!important}#content .avatar>img{border-radius:50%;float:right;margin:-8px 0 0 16px;height:90px;width:90px}#content ol{counter-reset:list;list-style:none;padding-left:2rem}#content ol>li{display:table-row}#content ol>li:before{content:"[" counter(list,decimal)"] ";counter-increment:list;display:table-cell;text-align:right;padding-right:.5em}#content .container>ol,#content .footnotes>ol{padding-left:0}#content ul{list-style:inside;padding-left:2rem}#content ul>li{list-style-position:outside;margin-left:1em}#content .container>ul,#content .footnotes>ul{padding-left:0}#content table{margin:1rem auto;width:100%}#content table th{font-weight:700}#content table tr:nth-child(2n){background-color:#f8f8f8}#content blockquote{border-left:4px solid;font-style:italic;margin:1rem 0;padding:8px}#content code{color:#222;background-color:#f8f8f8;border:1px solid #ccc;border-radius:10%;padding:0 4px;font-family:monospace!important}#content code span{font-family:monospace}#content pre code{all:unset;font-size:95%}#content .highlight{margin:1rem auto;border:1px solid #ccc}#content .highlight>pre{padding:8px;margin-bottom:0}#content .abstract{margin-top:12px;margin-bottom:12px;padding-left:72px;padding-right:72px}#content .abstract p:first-of-type::before{content:"Abstract: ";font-weight:700}
|
||||
@font-face{font-family:inconsolata lgc;font-style:normal;font-weight:400;src:local(""),url(fonts/inconsolatalgc-scaled-down.woff2)format("woff2")}#content a,.nav-link{color:#dc3545;text-decoration:none}#content a *,.nav-link *{color:#dc3545}#content a:hover,.nav-link:hover{color:#dc3545;text-decoration:underline}#footer a,.navbar-brand{color:#222;text-decoration:none}#footer a *,.navbar-brand *{color:#222}#footer a:hover,.navbar-brand:hover{color:#222;text-decoration:underline}#content table td,#content table th{border:1px solid #ccc;padding:6px 12px;text-align:left}*{color:#222;font-family:inconsolata,inconsolata lgc;line-height:1.2}.root{display:flex;flex-direction:column}.table-of-contents{order:0}.table-of-contents ul{padding-left:1rem!important}.table-of-contents ul>li{margin-left:.3em!important}.table-of-contents a.active{font-weight:700}.table-of-contents a:hover{cursor:pointer}@media(max-width:578px){.table-of-contents{align-self:center}}.container{max-width:750px;order:1}#title-large-screen{display:none}#title-small-screen{margin-left:15px!important}@media(max-width:578px){#title-small-screen{align-self:center}}@media(max-width:1125px){.root{margin-right:auto;margin-left:auto;width:100%;max-width:750px}.table-of-contents{padding-left:15px;padding-right:15px}}@media(min-width:1275px){.root{margin-left:calc((100vw - 750px)/2)}#actual-content{margin:0}}@media(min-width:1125px){.root{flex-direction:row}.table-of-contents{width:350px;order:2;position:sticky;top:0;padding:1em;align-self:start;scrollbar-width:thin}.table-of-contents .table-of-contents-text{overflow-x:hidden;overflow-y:auto;max-height:calc(100vh - 155px)}.table-of-contents .hidden{display:none}#title-small-screen{display:none}#title-large-screen{display:block}}.navbar-brand{font-size:2rem}#content p{margin-bottom:.6rem}#content h1,#content h2,#content h3,#content h4,#content h5,#content h6{font-size:medium;font-weight:700;margin:1rem 0 .6rem}#content h1{font-size:1.8rem}#content h2{font-size:1.6rem}#content h3{font-size:1.4rem}#content h4{font-size:1.2rem}#content img{display:block;margin:1rem auto;max-width:100%}#content a>img{margin:1rem 4px 1rem 0!important}#content .avatar>img{border-radius:50%;float:right;margin:-8px 0 0 16px;height:90px;width:90px}#content ol{counter-reset:list;list-style:none;padding-left:2rem}#content ol>li{display:table-row}#content ol>li:before{content:"[" counter(list,decimal)"] ";counter-increment:list;display:table-cell;text-align:right;padding-right:.5em}#content .container>ol,#content .footnotes>ol{padding-left:0}#content ul{list-style:inside;padding-left:2rem}#content ul>li{list-style-position:outside;margin-left:1em}#content .container>ul,#content .footnotes>ul{padding-left:0}#content table{margin:1rem auto;width:100%}#content table th{font-weight:700}#content table tr:nth-child(2n){background-color:#f8f8f8}#content .table-no-header th{font-weight:400}#content .table-no-header table{margin:0 0 .5rem}#content blockquote{border-left:4px solid;font-style:italic;margin:1rem 0;padding:8px}#content code{color:#222;background-color:#f8f8f8;border:1px solid #ccc;border-radius:10%;padding:0 4px;font-family:monospace!important}#content code span{font-family:monospace}#content pre code{all:unset;font-size:95%}#content .highlight{margin:1rem auto;border:1px solid #ccc}#content .highlight>pre{padding:8px;margin-bottom:0}#content .abstract{margin-top:12px;margin-bottom:12px;padding-left:72px;padding-right:72px}#content .abstract p:first-of-type::before{content:"Abstract: ";font-weight:700}#content span.underline{text-decoration:underline}
|
||||
573
sitemap.xml
573
sitemap.xml
|
|
@ -1,140 +1,435 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/eshell-atuin/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/org-clock-agg/</loc>
|
||||
<lastmod>2023-12-17T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-11-11-index/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/emacs/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/orgmode/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/biome/</loc>
|
||||
<lastmod>2023-07-22T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/micromamba/</loc>
|
||||
<lastmod>2023-06-20T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-04-13-emacs/</loc>
|
||||
<lastmod>2023-04-13T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-01-02-gource/</loc>
|
||||
<lastmod>2023-01-02T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/elfeed/</loc>
|
||||
<lastmod>2022-09-16T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-09-16-vosk/</loc>
|
||||
<lastmod>2022-09-16T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/reverso/</loc>
|
||||
<lastmod>2022-08-28T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/elfeed-sync/</loc>
|
||||
<lastmod>2022-05-29T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-05-09-pdf/</loc>
|
||||
<lastmod>2022-05-10T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/org-mode/</loc>
|
||||
<lastmod>2022-05-10T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/avy-dired/</loc>
|
||||
<lastmod>2022-04-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/elfeed-summary/</loc>
|
||||
<lastmod>2022-03-26T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/password-store-ivy/</loc>
|
||||
<lastmod>2022-02-13T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-02-12-literate/</loc>
|
||||
<lastmod>2022-02-12T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/org-journal-tags/</loc>
|
||||
<lastmod>2022-02-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/exwm/</loc>
|
||||
<lastmod>2022-01-03T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-01-03-exwm/</loc>
|
||||
<lastmod>2022-01-03T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/exwm-modeline/</loc>
|
||||
<lastmod>2021-12-22T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/perspective-exwm/</loc>
|
||||
<lastmod>2021-12-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/pomm/</loc>
|
||||
<lastmod>2021-11-05T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-10-04-emacs-i3/</loc>
|
||||
<lastmod>2021-10-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/i3wm/</loc>
|
||||
<lastmod>2021-10-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/emms/</loc>
|
||||
<lastmod>2021-09-08T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-09-07-emms/</loc>
|
||||
<lastmod>2021-09-08T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/packages/lyrics-fetcher/</loc>
|
||||
<lastmod>2021-08-14T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/org/</loc>
|
||||
<lastmod>2021-05-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-05-01-org-python/</loc>
|
||||
<lastmod>2021-05-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/tags/mail/</loc>
|
||||
<lastmod>2021-02-27T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-02-27-gmail/</loc>
|
||||
<lastmod>2021-02-27T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/posts/hello-world/</loc>
|
||||
<lastmod>2021-02-01T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/categories/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/console/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/desktop/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/emacs/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/guix/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/mail/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/configs/readme/</loc>
|
||||
</url><url>
|
||||
<loc>https://sqrtminusone.xyz/emacs-packages/</loc>
|
||||
</url>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/eshell-atuin/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/</loc>
|
||||
<lastmod>2024-03-08T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/org-clock-agg/</loc>
|
||||
<lastmod>2023-12-17T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-11-11-index/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/emacs/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/orgmode/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/</loc>
|
||||
<lastmod>2023-11-11T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/biome/</loc>
|
||||
<lastmod>2023-07-22T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/micromamba/</loc>
|
||||
<lastmod>2023-06-20T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-04-13-emacs/</loc>
|
||||
<lastmod>2023-04-13T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2023-01-02-gource/</loc>
|
||||
<lastmod>2023-01-02T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/elfeed/</loc>
|
||||
<lastmod>2022-09-16T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-09-16-vosk/</loc>
|
||||
<lastmod>2022-09-16T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/reverso/</loc>
|
||||
<lastmod>2022-08-28T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/elfeed-sync/</loc>
|
||||
<lastmod>2022-05-29T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-05-09-pdf/</loc>
|
||||
<lastmod>2022-05-10T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/org-mode/</loc>
|
||||
<lastmod>2022-05-10T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/avy-dired/</loc>
|
||||
<lastmod>2022-04-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/elfeed-summary/</loc>
|
||||
<lastmod>2022-03-26T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/password-store-ivy/</loc>
|
||||
<lastmod>2022-02-13T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-02-12-literate/</loc>
|
||||
<lastmod>2022-02-12T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/org-journal-tags/</loc>
|
||||
<lastmod>2022-02-06T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/exwm/</loc>
|
||||
<lastmod>2022-01-03T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2022-01-03-exwm/</loc>
|
||||
<lastmod>2022-01-03T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/exwm-modeline/</loc>
|
||||
<lastmod>2021-12-22T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/perspective-exwm/</loc>
|
||||
<lastmod>2021-12-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/pomm/</loc>
|
||||
<lastmod>2021-11-05T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-10-04-emacs-i3/</loc>
|
||||
<lastmod>2021-10-06T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/i3wm/</loc>
|
||||
<lastmod>2021-10-06T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/emms/</loc>
|
||||
<lastmod>2021-09-08T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-09-07-emms/</loc>
|
||||
<lastmod>2021-09-08T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/packages/lyrics-fetcher/</loc>
|
||||
<lastmod>2021-08-14T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/org/</loc>
|
||||
<lastmod>2021-05-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-05-01-org-python/</loc>
|
||||
<lastmod>2021-05-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/tags/mail/</loc>
|
||||
<lastmod>2021-02-27T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/2021-02-27-gmail/</loc>
|
||||
<lastmod>2021-02-27T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/posts/hello-world/</loc>
|
||||
<lastmod>2021-02-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/categories/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/console/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/desktop/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/emacs/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/guix/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/mail/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/configs/readme/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
|
||||
<url>
|
||||
<loc>https://sqrtminusone.xyz/emacs-packages/</loc>
|
||||
<lastmod>0001-01-01T00:00:00+00:00</lastmod>
|
||||
|
||||
|
||||
</url>
|
||||
|
||||
|
||||
</urlset>
|
||||
|
|
|
|||
BIN
stats/all.png
BIN
stats/all.png
Binary file not shown.
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 120 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
Loading…
Add table
Reference in a new issue