<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: jastuccio</title>
    <description>The latest articles on DEV Community by jastuccio (@jastuccio).</description>
    <link>https://dev.to/jastuccio</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F272265%2F47fcd35a-a9fe-4b49-925e-b64e4ee68fb5.jpg</url>
      <title>DEV Community: jastuccio</title>
      <link>https://dev.to/jastuccio</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jastuccio"/>
    <language>en</language>
    <item>
      <title>Fixing "git@github.com: Permission denied (publickey)"</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Sun, 18 Feb 2024 17:41:04 +0000</pubDate>
      <link>https://dev.to/jastuccio/fixing-gitgithubcom-permission-denied-publickey-2lid</link>
      <guid>https://dev.to/jastuccio/fixing-gitgithubcom-permission-denied-publickey-2lid</guid>
      <description>&lt;p&gt;I run into this error when I haven't used GitHub in a while. There is a simple fix to reconnect your SSH key. The syntax is a bit different than most online answers because I use FISH(Friendly Interactive shell).&lt;/p&gt;

&lt;p&gt;in BASH the command should be &lt;code&gt;eval $(ssh-agent -s)&lt;/code&gt;&lt;br&gt;
in FISH type &lt;code&gt;eval (ssh-agent -c)&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;A slight difference but figuring this out almost drove me nuts the first time.&lt;/p&gt;

&lt;p&gt;Next type &lt;code&gt;ssh-add path/to/your/ssh-key&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Now the error should be resolved.&lt;/p&gt;

&lt;p&gt;If you need to generate SSH keys this might help&lt;br&gt;
&lt;a href="https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent"&gt;https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>bug fix: VS Code was deleting my curly braces { } in a Sveltekit file</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Fri, 21 Oct 2022 23:30:43 +0000</pubDate>
      <link>https://dev.to/jastuccio/bug-fix-vs-code-was-deleting-my-curly-braces-in-a-sveltekit-file-56aj</link>
      <guid>https://dev.to/jastuccio/bug-fix-vs-code-was-deleting-my-curly-braces-in-a-sveltekit-file-56aj</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kuJYKd-j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8qmtu1anos63si8mcpgp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kuJYKd-j--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8qmtu1anos63si8mcpgp.png" alt="Image description" width="880" height="109"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's Friday night so of course I'll get a strange bug to work on 🤪&lt;/p&gt;

&lt;p&gt;VS Code was auto formatting an {#if} block and removing the { } I was quick to pile blame on Prettier or maybe ESLint.  It turns out this was an Emmet issue.  You can see "Emmet Abreviaton" in the image.  Hitting return was triggering Emmet to delete the { } "mustache brackets". I had to adjust some of the VS Code settings.&lt;/p&gt;

&lt;p&gt;It seems I was able to resolve it after changing some setting in VS code based on info I found on Github.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/sveltejs/language-tools/tree/master/packages/svelte-vscode#setup"&gt;https://github.com/sveltejs/language-tools/tree/master/packages/svelte-vscode#setup&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>NPM commands</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Mon, 28 Jun 2021 15:04:31 +0000</pubDate>
      <link>https://dev.to/jastuccio/npm-commands-1178</link>
      <guid>https://dev.to/jastuccio/npm-commands-1178</guid>
      <description>&lt;p&gt;Just some NPM commands I had to look up.&lt;/p&gt;

&lt;h2&gt;
  
  
  What NPM packages are installed?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;List your global npm packages: &lt;code&gt;npm list -g&lt;/code&gt;

&lt;ul&gt;
&lt;li&gt;dropping the &lt;code&gt;-g&lt;/code&gt; flag will list packages in the current directory&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Removing NPM packages
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Remove a package: &lt;code&gt;npm r &amp;lt;name&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;aliases for r: remove, rm, un, unlink, uninstall (&lt;a href="https://docs.npmjs.com/cli/v7/commands/npm-uninstall"&gt;see npm uninstall docs&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Remove extraneous packages and packages that are not listed on the parent package's dependencies list: &lt;code&gt;npm prune &amp;lt;name&amp;gt;&lt;/code&gt; (&lt;a href="https://docs.npmjs.com/cli/prune"&gt;see npm prune docs&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Uninstall all npm packages &lt;a href="https://stackoverflow.com/a/39920025/1769594"&gt;(stack overflow)&lt;/a&gt;: &lt;code&gt;rm -rf node_modules &amp;amp;&amp;amp; npm cache clean &amp;amp;&amp;amp; npm install&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>node</category>
      <category>npm</category>
    </item>
    <item>
      <title>JavaScript data types</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Wed, 16 Jun 2021 15:31:10 +0000</pubDate>
      <link>https://dev.to/jastuccio/javascript-data-types-5e1b</link>
      <guid>https://dev.to/jastuccio/javascript-data-types-5e1b</guid>
      <description>&lt;p&gt;JS is dynamically typed. You don't have to declare a type. types are determined automatically.&lt;/p&gt;

&lt;p&gt;Values stored in variables have types, not the variables themselves.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;console.log(typeof "word")&lt;/code&gt; logs the type (in this case string)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;typeof null&lt;/code&gt; returns object. This is a legacy error.&lt;/p&gt;

&lt;p&gt;creating a string without using quotes will give you an error. &lt;code&gt;let string = this creates an error&lt;/code&gt; logs "Uncaught SyntaxError: Unexpected identifier"&lt;/p&gt;

&lt;h2&gt;
  
  
  Objects
&lt;/h2&gt;

&lt;p&gt;... coming soon&lt;/p&gt;

&lt;h2&gt;
  
  
  Primitives
&lt;/h2&gt;

&lt;p&gt;There are 7 primitive data types in JavaScript&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;numbers - floating point. Decimals and integers&lt;/li&gt;
&lt;li&gt;strings - characters&lt;/li&gt;
&lt;li&gt;boolean - true or false&lt;/li&gt;
&lt;li&gt;undefined - empty values

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;let name;&lt;/code&gt; declaring a variable without assigning a value will have undefined as it's value&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/null"&gt;null&lt;/a&gt; - the intentional absence of any object value. 

&lt;ul&gt;
&lt;li&gt;falsy.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol"&gt;symbol(ES2015)&lt;/a&gt; - guaranteed to be unique. Often used to add unique property keys to an object&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt"&gt;BigInt(ES2020)&lt;/a&gt; - for larger integers than number can handle&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>CSS variable fallback</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Fri, 28 May 2021 23:33:17 +0000</pubDate>
      <link>https://dev.to/jastuccio/css-variable-fallback-2269</link>
      <guid>https://dev.to/jastuccio/css-variable-fallback-2269</guid>
      <description>&lt;p&gt;example: &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; tags will be &lt;code&gt;--text-color&lt;/code&gt; variable or fall back to black&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;
&lt;span class="nd"&gt;:root&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="py"&gt;--text-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#212121&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;


&lt;span class="nt"&gt;p&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;var&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;--text-color&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="no"&gt;black&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>css</category>
    </item>
    <item>
      <title>Salesforce B2C Commerce storefront</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Wed, 12 May 2021 18:14:00 +0000</pubDate>
      <link>https://dev.to/jastuccio/salesforce-b2c-commerce-storefront-3n96</link>
      <guid>https://dev.to/jastuccio/salesforce-b2c-commerce-storefront-3n96</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Model–View–Controller (MVC) Architecture
&lt;/h2&gt;

&lt;p&gt;divides an application into three parts.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Model&lt;/strong&gt; - the business logic, data, and rules underlying the application. &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Traditionally, models store the data that’s used to populate the view.&lt;/li&gt;
&lt;li&gt;In B2C Commerce, data is represented by APIs, which provide helper classes instead of storing data.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;View&lt;/strong&gt; - What the shopper sees on the storefront. It’s the landing page, the product details page, QuickView, the cart page, etc&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Controller&lt;/strong&gt; handles entry fields, button clicks, etc and turns them into actions or data that is consumed by the model or view.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://trailhead.salesforce.com/content/learn/modules/cc-digital-for-developers/digital-dev-environment?trail_id=develop-for-commerce-cloud"&gt;https://trailhead.salesforce.com/content/learn/modules/cc-digital-for-developers/digital-dev-environment?trail_id=develop-for-commerce-cloud&lt;/a&gt;&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Salesforce: Importing Data</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Tue, 13 Apr 2021 17:01:52 +0000</pubDate>
      <link>https://dev.to/jastuccio/salesforce-importing-data-j44</link>
      <guid>https://dev.to/jastuccio/salesforce-importing-data-j44</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Data Import Wizard
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Import up to 50,000 records&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Data Loader
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Import 50,000 to 5 million records&lt;/li&gt;
&lt;li&gt;Objects not supported by the Data Import Wizard&lt;/li&gt;
&lt;li&gt;scheduled loading like nightly imports&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you need to load over 5 million records check the AppExchange for a suitable partner product.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create an export file&lt;/li&gt;
&lt;li&gt;Sanitize the data

&lt;ul&gt;
&lt;li&gt;remove duplicates&lt;/li&gt;
&lt;li&gt;delete unnecessary information&lt;/li&gt;
&lt;li&gt;correct spelling and other errors&lt;/li&gt;
&lt;li&gt;enforce naming conventions&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Confirm that your data will be mapped into the correct Salesforce fields

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://help.salesforce.com/apex/HTViewHelpDoc?id=field_mapping_for_other_data_sources_and_organization_import.htm&amp;amp;language=en_US"&gt;Field Mapping for Other Data Sources and Organization Import&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Make any required Salesforce configuration changes

&lt;ul&gt;
&lt;li&gt;create new custom fields&lt;/li&gt;
&lt;li&gt;add new values to picklists&lt;/li&gt;
&lt;li&gt;temporarily deactivate workflow rules&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://trailhead.salesforce.com/en/content/learn/modules/lex_implementation_data_management/lex_implementation_data_import?trail_id=force_com_dev_beginner"&gt;https://trailhead.salesforce.com/en/content/learn/modules/lex_implementation_data_management/lex_implementation_data_import?trail_id=force_com_dev_beginner&lt;/a&gt;&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Salesforce: Pardot</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Mon, 12 Apr 2021 15:10:06 +0000</pubDate>
      <link>https://dev.to/jastuccio/salesforce-pardot-5fpo</link>
      <guid>https://dev.to/jastuccio/salesforce-pardot-5fpo</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Pardot&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;is a business-to-business (B2B) marketing automation platform. It includes email automation, targeted email campaigns, lead management, and tracking customer behavior.&lt;/p&gt;

&lt;p&gt;Salesforce acquired Pardot in 2013 as part of the ExactTarget acquisition. Radian6, Buddy Media, and ExactTarget are part of the Salesforce marketing cloud.&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Salesforce: Aura Components</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Sun, 11 Apr 2021 21:29:28 +0000</pubDate>
      <link>https://dev.to/jastuccio/salesforce-aura-components-19el</link>
      <guid>https://dev.to/jastuccio/salesforce-aura-components-19el</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Salesforce has archived the Aura open-source UI framework&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;They were replaced with Lightning Web Components around February 2019. Aura components and LWC can coexist and interoperate on the same page.&lt;/p&gt;

&lt;h2&gt;
  
  
  Aura components
&lt;/h2&gt;

&lt;p&gt;are the self-contained and reusable units of an app. They represent a reusable section of the UI, and can range in granularity from a single line of text to an entire app.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/forcedotcom/aura"&gt;https://github.com/forcedotcom/aura&lt;/a&gt;&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Salesforce: Visualforce</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Sun, 11 Apr 2021 21:06:07 +0000</pubDate>
      <link>https://dev.to/jastuccio/salesforce-visualforce-47el</link>
      <guid>https://dev.to/jastuccio/salesforce-visualforce-47el</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Visualforce:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A markup language that lets you create custom Salesforce pages with code that looks a lot like HTML, and optionally can use a powerful combination of Apex and JavaScript.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://trailhead.salesforce.com/content/learn/modules/platform_dev_basics/platform_dev_basics_code#get-to-know-your-options"&gt;https://trailhead.salesforce.com/content/learn/modules/platform_dev_basics/platform_dev_basics_code#get-to-know-your-options&lt;/a&gt;&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Salesforce: Scratch Orgs</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Sun, 11 Apr 2021 17:49:52 +0000</pubDate>
      <link>https://dev.to/jastuccio/what-are-scratch-orgs-in-salesforce-4i34</link>
      <guid>https://dev.to/jastuccio/what-are-scratch-orgs-in-salesforce-4i34</guid>
      <description>&lt;p&gt;&lt;em&gt;Salesforce has so much terminology it can be a bit overwhelming in the beginning. I am starting a series of short posts to help me learn the definitions.&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Scratch Orgs&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A disposable deployment of Salesforce code and metadata. scratch orgs are used to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Start a new project or a new feature branch.&lt;/li&gt;
&lt;li&gt;Test a new feature.&lt;/li&gt;
&lt;li&gt;Start automated testing.&lt;/li&gt;
&lt;li&gt;Perform development tasks directly in an org.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can read more in the &lt;a href="https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_scratch_orgs.htm"&gt;scratch org docs&lt;/a&gt;&lt;/p&gt;

</description>
      <category>salesforce</category>
    </item>
    <item>
      <title>Editing your fish history</title>
      <dc:creator>jastuccio</dc:creator>
      <pubDate>Sun, 11 Apr 2021 17:16:20 +0000</pubDate>
      <link>https://dev.to/jastuccio/editing-your-fish-history-1o28</link>
      <guid>https://dev.to/jastuccio/editing-your-fish-history-1o28</guid>
      <description>&lt;p&gt;Using your terminal history can save time or help you to remember commands you have not used in a long time. If you make typos in fish they still go into your history. There are a couple of ways to remove commands from your fish history.&lt;/p&gt;

&lt;p&gt;Get a list and delete some or all of the commands that match the string:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;history delete --contains "search string"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;example:&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb0w3ngfcu0mc4semmki4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb0w3ngfcu0mc4semmki4.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;Open your history file. You can delete the command and time stamp for any commands you want to remove.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;code ~/.local/share/fish/fish_history
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;wipe everything clean:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;history clear
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;docs:&lt;br&gt;
&lt;a href="https://fishshell.com/docs/current/cmds/history.html" rel="noopener noreferrer"&gt;https://fishshell.com/docs/current/cmds/history.html&lt;/a&gt;&lt;/p&gt;

</description>
      <category>fish</category>
      <category>shell</category>
      <category>terminal</category>
    </item>
  </channel>
</rss>
