<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <id>https://jdsalaro.com</id>
  <title>Jayson Salazar Rodriguez | @jdsalaro | Blog - Posts in cheatsheets</title>
  <updated>2025-12-26T16:36:53.457797+00:00</updated>
  <link href="https://jdsalaro.com"/>
  <link href="https://jdsalaro.com/blog/category/cheatsheets/atom.xml" rel="self"/>
  <generator uri="https://ablog.readthedocs.io/" version="0.11.4.post1">ABlog</generator>
  <subtitle>@jdsalaro</subtitle>
  <entry>
    <id>https://jdsalaro.com/cheatsheet/git-revision-selection/</id>
    <title>Git Revision Selection and Expressions A…B</title>
    <updated>2023-07-15T00:00:00+00:00</updated>
    <author>
      <name>Jayson Salazar Rodriguez</name>
    </author>
    <content type="html">&lt;p class="ablog-post-excerpt"&gt;&lt;p&gt;While using git it’s common to use object identifiers to operate on the underlying objects: checking branches out, reverting a commit, resetting to a given point in the history, and more.&lt;/p&gt;
&lt;img alt="https://jdsalaro.com/_images/revision-parents-ancestors.png" src="https://jdsalaro.com/_images/revision-parents-ancestors.png" /&gt;&lt;/p&gt;

    &lt;script type="text/x-thebe-config"&gt;
    {
        requestKernel: true,
        binderOptions: {
            repo: "binder-examples/jupyter-stacks-datascience",
            ref: "master",
        },
        codeMirrorConfig: {
            theme: "abcdef",
            mode: "python"
        },
        kernelOptions: {
            name: "python3",
            path: "./blog/category"
        },
        predefinedOutput: true
    }
    &lt;/script&gt;
    &lt;script&gt;kernelName = 'python3'&lt;/script&gt;</content>
    <link href="https://jdsalaro.com/cheatsheet/git-revision-selection/" rel="alternate"/>
    <summary>While using git it’s common to use object identifiers to operate on the underlying objects: checking branches out, reverting a commit, resetting to a given point in the history, and more.</summary>
    <category term="git" label="git"/>
    <category term="highlight" label="highlight"/>
    <category term="technology" label="technology"/>
    <published>2023-07-15T00:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://jdsalaro.com/cheatsheet/sphinx-myst-markdown/</id>
    <title>MySt and Markdown for Sphinx Cheatsheet</title>
    <updated>2023-07-12T00:00:00+00:00</updated>
    <author>
      <name>Jayson Salazar Rodriguez</name>
    </author>
    <content type="html">&lt;p class="ablog-post-excerpt"&gt;&lt;p&gt;I’ve never been a fan of Re-StructuredText, but most importantly I’m new to MySt, which leads to a lot of googling and painstaking trial-and-error while writing. Although my preferred references are the &lt;a class="reference external" href="https://jupyterbook.org/en/stable/reference/cheatsheet.html"&gt;Jupyter Book MyST Cheatsheet&lt;/a&gt;, the &lt;a class="reference external" href="https://sphinx-book-theme.readthedocs.io/en/stable"&gt;Sphinx Book Theme Documentation&lt;/a&gt;, and the &lt;a class="reference external" href="https://myst-parser.readthedocs.io/en/latest/syntax"&gt;MyST Parser Reference&lt;/a&gt;, they are way too extensive, sometimes incorrect, and I don’t really use every directive or variant thereof. Therefore, I’ll use this post to gather the bits of the syntax and snippets I use the most.&lt;/p&gt;
&lt;/p&gt;

    &lt;script type="text/x-thebe-config"&gt;
    {
        requestKernel: true,
        binderOptions: {
            repo: "binder-examples/jupyter-stacks-datascience",
            ref: "master",
        },
        codeMirrorConfig: {
            theme: "abcdef",
            mode: "python"
        },
        kernelOptions: {
            name: "python3",
            path: "./blog/category"
        },
        predefinedOutput: true
    }
    &lt;/script&gt;
    &lt;script&gt;kernelName = 'python3'&lt;/script&gt;</content>
    <link href="https://jdsalaro.com/cheatsheet/sphinx-myst-markdown/" rel="alternate"/>
    <summary>I’ve never been a fan of Re-StructuredText, but most importantly I’m new to MySt, which leads to a lot of googling and painstaking trial-and-error while writing. Although my preferred references are the Jupyter Book MyST Cheatsheet, the Sphinx Book Theme Documentation, and the MyST Parser Reference, they are way too extensive, sometimes incorrect, and I don’t really use every directive or variant thereof. Therefore, I’ll use this post to gather the bits of the syntax and snippets I use the most.</summary>
    <category term="blogging" label="blogging"/>
    <category term="highlight" label="highlight"/>
    <category term="myst" label="myst"/>
    <category term="sphinx" label="sphinx"/>
    <category term="technology" label="technology"/>
    <published>2023-07-12T00:00:00+00:00</published>
  </entry>
  <entry>
    <id>https://jdsalaro.com/cheatsheet/git/</id>
    <title>Git Cheatsheet: Commands, Tips and Tricks 📝</title>
    <updated>2023-06-06T00:00:00+00:00</updated>
    <author>
      <name>Jayson Salazar Rodriguez</name>
    </author>
    <content type="html">&lt;p class="ablog-post-excerpt"&gt;&lt;p&gt;This is compilation of useful git commands, tips and tricks I created for myself since I kept forgetting some commands related to configuring, searching and managing git repositories. The format is simple, just a list with short descriptions for some common, and other less common, commands which I often find myself looking up online.&lt;/p&gt;
&lt;img alt="https://jdsalaro.com/_images/gitworkflow.png" src="https://jdsalaro.com/_images/gitworkflow.png" /&gt;&lt;/p&gt;

    &lt;script type="text/x-thebe-config"&gt;
    {
        requestKernel: true,
        binderOptions: {
            repo: "binder-examples/jupyter-stacks-datascience",
            ref: "master",
        },
        codeMirrorConfig: {
            theme: "abcdef",
            mode: "python"
        },
        kernelOptions: {
            name: "python3",
            path: "./blog/category"
        },
        predefinedOutput: true
    }
    &lt;/script&gt;
    &lt;script&gt;kernelName = 'python3'&lt;/script&gt;</content>
    <link href="https://jdsalaro.com/cheatsheet/git/" rel="alternate"/>
    <summary>This is compilation of useful git commands, tips and tricks I created for myself since I kept forgetting some commands related to configuring, searching and managing git repositories. The format is simple, just a list with short descriptions for some common, and other less common, commands which I often find myself looking up online.</summary>
    <category term="git" label="git"/>
    <category term="highlight" label="highlight"/>
    <category term="technology" label="technology"/>
    <published>2023-06-06T00:00:00+00:00</published>
  </entry>
</feed>
