<?xml version="1.0" ?>
    <rss version="2.0">
      <channel>
          <title><![CDATA[Riccardo Giorato: Blog, Experiments, Remote work, Newsletter and more!]]></title>
          <link>https://riccardogiorato.com</link>
          <description>
            <![CDATA[Every week new articles on Remote Work, Minimalism, Crypto, Travel, Health and Food!]]>
          </description>
          <language>en</language>
          <image>
            <url>https://riccardogiorato.com/assets/favicon.png</url>
            <title><![CDATA[Riccardo Giorato: Blog, Experiments, Remote work, Newsletter and more!]]></title>
            <link>https://riccardogiorato.com</link>
            <width>96</width>
            <height>96</height>
          </image>
          <lastBuildDate>2021-10-05</lastBuildDate>
          
        <item>
          <title><![CDATA[How to test your Stripe Checkout with Cypress]]></title>
          <link>https://riccardogiorato.com/blog/a/cypress-stripe-checkout</link>
          <pubDate>2021-10-05</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/cypress-stripe-checkout</guid>
          <category>cypress</category><category>e2e</category><category>stripe</category>
          <description>
          <![CDATA[<h2>In this article we will look into how we can test a website that uses Stripe Checkout bringing more testing to your eCommerce!</h2> <img src='https://cdn.riccardogiorato.com/cypress-stripe-checkout.jpg' alt='cover image for the article How to test your Stripe Checkout with Cypress'/><blockquote>
<p>All the code from this tutorial here: <a href="https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/stripe">https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/stripe</a></p>
</blockquote>
<h3>Introduction</h3>
<p>Stripe Checkout is a prebuilt, hosted payment page optimized for conversion. It connects automatically to your Stripe Account being able to create complete eCommerce products without having to code or maintain a checkout.</p>
<p>Like every other part of your app you can also test Stripe Checkout with Cypress!</p>
<p>For this tutorial we will use the staging demo environments created directly by using Stripe APIs that we found out by playing with the official demo page:</p>
<ul>
<li><a href="https://checkout.stripe.dev/api/demo-session?country=us&billingPeriod=monthly&hasBgColor=false&hasBillingAndShipping=false&hasCoupons=false&hasFreeTrial=false&hasShippingRate=false&hasTaxes=false&mode=payment&wallet=googlePay&hasPolicies=false&billingType=flat">checkout stripe devi api demo-session</a></li>
</ul>
<h3>Inserting Credit Card Info and Billing</h3>
<pre><code class="language-javascript">describe(&quot;Stripe Checkout&quot;, () =&gt; {
  it(&quot;Stripe Checkout test mode works!&quot;, () =&gt; {
    cy.request(
      &quot;https://checkout.stripe.dev/api/demo-session?country=us&amp;billingPeriod=monthly&amp;hasBgColor=false&amp;hasBillingAndShipping=false&amp;hasCoupons=false&amp;hasFreeTrial=false&amp;hasShippingRate=false&amp;hasTaxes=false&amp;mode=payment&amp;wallet=googlePay&amp;hasPolicies=false&amp;billingType=flat&quot;
    ).then((response) =&gt; {
      expect(response.status).to.eq(200)
      expect(response.body).to.have.property(&quot;url&quot;)
      cy.visit(response.body.url)
      cy.url().should(&quot;contains&quot;, &quot;https://checkout.stripe.com/pay/&quot;)

      cy.get(&quot;#email&quot;).type(&quot;SatoshiNakamoto@email.com&quot;)
      cy.get(&quot;#cardNumber&quot;).type(&quot;4242424242424242&quot;)
      cy.get(&quot;#cardCvc&quot;).type(&quot;123&quot;)
      cy.get(&quot;#cardExpiry&quot;).type(
        &quot;12&quot; + (new Date().getFullYear() + 10).toString().substr(-2)
      )
      cy.get(&quot;#billingName&quot;).type(&quot;Satoshi Nakamoto&quot;)
      cy.get(&quot;#billingPostalCode&quot;).type(&quot;94043&quot;)

      cy.wait(1000)
      cy.get(&quot;.SubmitButton&quot;).should(($div) =&gt; {
        expect($div.text()).to.include(&quot;Pay&quot;)
      })
      cy.get(&quot;.SubmitButton&quot;).click()
      cy.get(&quot;.SubmitButton&quot;).should(($div) =&gt; {
        expect($div.text()).to.include(&quot;Processing&quot;)
      })
    })
  })
})
</code></pre>
<p>In the first 3 lines from 3 to 5 we fetch a new demo URL from the stripe API that we will use just for this demo, in a real environment you will just use
cy.visit to load your checkout page after the previous user steps.</p>
<pre><code class="language-javascript">cy.request(
  &quot;https://checkout.stripe.dev/api/demo-session?country=us&amp;billingPeriod=monthly&amp;hasBgColor=false&amp;hasBillingAndShipping=false&amp;hasCoupons=false&amp;hasFreeTrial=false&amp;hasShippingRate=false&amp;hasTaxes=false&amp;mode=payment&amp;wallet=googlePay&amp;hasPolicies=false&amp;billingType=flat&quot;
).then((response) =&gt; {
  expect(response.status).to.eq(200)
  expect(response.body).to.have.property(&quot;url&quot;)
  cy.visit(response.body.url)
  cy.url().should(&quot;contains&quot;, &quot;https://checkout.stripe.com/pay/&quot;)
})
</code></pre>
<p>The beauty of testing Stripe Checkout is that you don’t need to learn to use iFrames or other plugins like you would have to do with Stripe Elements.
(<a href="https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/stripe#stripe-elements">Stripe Elements use iFrame inserted in your page making the testing a bit harder</a>)</p>
<pre><code class="language-javascript">cy.get(&quot;#email&quot;).type(&quot;SatoshiNakamoto@email.com&quot;)
cy.get(&quot;#cardNumber&quot;).type(&quot;4242424242424242&quot;)
cy.get(&quot;#cardCvc&quot;).type(&quot;123&quot;)
cy.get(&quot;#cardExpiry&quot;).type(
  &quot;12&quot; + (new Date().getFullYear() + 10).toString().substr(-2)
)
cy.get(&quot;#billingName&quot;).type(&quot;Satoshi Nakamoto&quot;)
cy.get(&quot;#billingPostalCode&quot;).type(&quot;94043&quot;)
</code></pre>
<p>In this case we will simply be able to run the lines from 11 to 18 inserting the different fields like “email” or “cardNumber”, etc.</p>
<p>As the final step we wait 1 seconds or 1000 milliseconds before continuing the steps, we do this to let Stripe Api process the input cause Cypress tends to execute the previous steps too fast compared to a human and in many occasions Stripe could be still loading or validating the fields.
And then we conclude the Checkout process by clicking the “SubmitButton”!</p>
<pre><code class="language-javascript">cy.wait(1000)
cy.get(&quot;.SubmitButton&quot;).should(($div) =&gt; {
  expect($div.text()).to.include(&quot;Pay&quot;)
})
cy.get(&quot;.SubmitButton&quot;).click()
cy.get(&quot;.SubmitButton&quot;).should(($div) =&gt; {
  expect($div.text()).to.include(&quot;Processing&quot;)
})
</code></pre>
<h3>Conclusion</h3>
<p>There is no right or wrong way to build an E2E test. The only thing you should care about is building a proper test that will automate your manual actions.</p>
<blockquote>
<h4>Less time to do a manual test and more time to have fun building other things!</h4>
</blockquote>
<p>Let us know in the comments which kind of test you would like to see next!</p>
<h3>Resources</h3>
<ul>
<li><p>Stripe Checkout example: <a href="https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/stripe/cypress/integration/stripe-checkout.ts">https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/stripe/cypress/integration/stripe-checkout.ts</a></p>
</li>
<li><p>cypress example directory: <a href="https://github.com/riccardogiorato/cypress-for-everything#examples">cypress-for-everything#examples</a></p>
</li>
<li><p>Stripe Elements example: <a href="https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/stripe/cypress/integration/stripe-elements.ts">https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/stripe/cypress/integration/stripe-elements.ts</a></p>
</li>
<li><p>Stripe examples: <a href="https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/stripe">https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/stripe</a></p>
</li>
</ul>
<h2></h2>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[How to Test HTTP Responses and Redirects with Cypress]]></title>
          <link>https://riccardogiorato.com/blog/a/cypress-http-response</link>
          <pubDate>2021-09-28</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/cypress-http-response</guid>
          <category>cypress</category><category>e2e</category><category>http-status</category>
          <description>
          <![CDATA[<h2>All sites have different Http Codes like 200, 404, 500, 300 and we can test them easily to always send back the right response!</h2> <img src='https://cdn.riccardogiorato.com/http-and-redirects.jpg' alt='cover image for the article How to Test HTTP Responses and Redirects with Cypress'/><blockquote>
<p>All the code from this tutorial here: <a href="https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/http-response-status">https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/http-response-status</a></p>
</blockquote>
<h3>Why making an E2E test for a Http Responses?</h3>
<p>The under users of your app will always visit your website from specific urls or maybe in many occasions they will make a spell error in the URL maybe forgetting the “s” in “https://” or not adding the “www” to the URLs.</p>
<p>With Cypress you can test all sort of these things usually done with 300 or 301 redirects from the Servers or also testing responses to 404 pages or 500 forbidden pages from unauthenticated users.</p>
<p>For this tutorial, we choose to use Cypress.io cause it’s one of the most used E2E tools on the web.</p>
<h3>Redirects 301 code</h3>
<p>Redirects usually are done with the code 301 “Moved Permanently”, they are used when you a specific page or url has been reorganized or moved to a different one.</p>
<pre><code class="language-javascript">const baseUrlTesla = &quot;https://www.tesla.com/&quot;
const urlHttp = &quot;http://tesla.com&quot;
it(urlHttp + &quot; end location&quot;, () =&gt; {
  cy.visit(urlHttp)
  cy.url().should(&quot;eq&quot;, baseUrlTesla)
})
it(urlHttp + &quot; redirect&quot;, () =&gt; {
  cy.request({
    url: urlHttp,
    followRedirect: false, // turn off following redirects
  }).then((resp) =&gt; {
    // redirect status code is 301
    expect(resp.status).to.eq(301)
    expect(resp.redirectedToUrl).to.eq(baseUrlTesla)
  })
})
</code></pre>
<h3>Found Page 200 code</h3>
<p>The “200” response code is used for all found pages, when the server exactly finds the resource at the URL you specified in your request.</p>
<pre><code class="language-javascript">const baseUrlTesla = &quot;https://www.tesla.com/&quot;
const urlHttpsWww = &quot;https://www.tesla.com/&quot;
it(urlHttpsWww + &quot; end location&quot;, () =&gt; {
  cy.visit(urlHttpsWww)
  cy.url().should(&quot;eq&quot;, baseUrlTesla)
})
it(&quot;200 homepage response&quot;, () =&gt; {
  cy.request({
    url: urlHttpsWww,
    followRedirect: false,
  }).then((resp) =&gt; {
    expect(resp.status).to.eq(200)
    expect(resp.redirectedToUrl).to.eq(undefined)
  })
})
</code></pre>
<h3>Not Found Page 404 code</h3>
<p>When you don’t find a page you will get the most beautiful and common code 404 also know “not found”!</p>
<pre><code class="language-javascript">const baseUrlTesla = &quot;https://www.tesla.com/&quot;
const url404test = &quot;https://www.tesla.com/not-a-real-page&quot;
it(&quot;404 &#39;not found&#39; response&quot;, () =&gt; {
  cy.request({
    url: url404test,
    followRedirect: false,
    failOnStatusCode: false,
  }).then((resp) =&gt; {
    expect(resp.status).to.eq(404)
    expect(resp.redirectedToUrl).to.eq(undefined)
  })
  cy.visit(url404test, { failOnStatusCode: false })
  cy.get(&quot;.error-code&quot;).should(&quot;contain&quot;, &quot;404&quot;)
  cy.get(&quot;.error-text&quot;).should(&quot;contain&quot;, &quot;Page not found&quot;)
})
</code></pre>
<h3>Conclusion</h3>
<p>There is no right or wrong way to build an E2E test. The only thing you should care about is building a proper test that will automate your manual actions.</p>
<p>With this tutorial, we won’t ever need to check again the usual pages we have for 404, we will always be able to check all the redirects we implemented and more!</p>
<blockquote>
<h4>Less time to do a manual test and more time to have fun building other things!</h4>
</blockquote>
<p>Let us know in the comments which kind of test you would like to see next!</p>
<h3>Resources</h3>
<ul>
<li><p>Testing Tesla Http Responses: <a href="https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/http-response-status/cypress/integration/tesla-http.ts">https://github.com/riccardogiorato/cypress-for-everything/blob/main/examples/http-response-status/cypress/integration/tesla-http.ts</a></p>
</li>
<li><p>Cypress Example directory: <a href="https://github.com/riccardogiorato/cypress-for-everything#examples">cypress-for-everything#examples</a></p>
</li>
<li><p>Http Response examples: <a href="https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/http-response-status">https://github.com/riccardogiorato/cypress-for-everything/tree/main/examples/http-response-status</a></p>
</li>
</ul>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[What could help me do more deep work or fitness?]]></title>
          <link>https://riccardogiorato.com/blog/a/what-could-help-me-software</link>
          <pubDate>2021-09-16</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/what-could-help-me-software</guid>
          
          <description>
          <![CDATA[<h2>How is my routine? Can I make it better?</h2> <img src='https://cdn.riccardogiorato.com/learn-roadmap-end-2021.jpg' alt='cover image for the article What could help me do more deep work or fitness?'/><h3>What do I want to help or improve?</h3>
<p>I would love to improve in a few areas:</p>
<ol>
<li>Deep Work sessions on highly impactful projects or activites</li>
<li>Fitness related to posture, strenght, and movement</li>
</ol>
<h3>Deep Work sessions</h3>
<p>How can I improve my deep work sessions?</p>
<ol>
<li><p>timeblocking before work, before work I always go walking but I lose extra time waiting in front of my computer doing other things.</p>
</li>
<li><p>timeblocking during work, I don&#39;t usually follow pomodoros sessions but I can do it also because I should do more activites during the 9to5 hours like 10 pushups every 25 minutes!</p>
</li>
<li><p>timeblocking after work, most of the time I will have to &quot;cook&quot;/&quot;buy grocieries&quot;/&quot;work on personal project or learning&quot;/&quot;just chill?&quot;</p>
</li>
<li><p>tasks planning with Jira at work and Trello for personal stuff, removing distractions and planning which specific tasks will I work on without more context switching</p>
</li>
</ol>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[My Learning Roadmap to the end of 2021]]></title>
          <link>https://riccardogiorato.com/blog/a/learn-roadmap-end-2021</link>
          <pubDate>2021-08-05</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/learn-roadmap-end-2021</guid>
          
          <description>
          <![CDATA[<h2>The list of the things I plan on doing/learning before the end of the year</h2> <img src='https://cdn.riccardogiorato.com/learn-roadmap-end-2021.jpg' alt='cover image for the article My Learning Roadmap to the end of 2021'/><h3>Let&#39;s try to keep it simple!</h3>
<p>What are the main areas of focus for me in the following months until the end of 2021?</p>
<ol>
<li>AWS</li>
<li>Big Data, AI and ML</li>
</ol>
<h3>AWS</h3>
<ol>
<li>AWS Cloud Practicioner Certificate: <a href="https://aws.amazon.com/it/certification/certified-cloud-practitioner/">https://aws.amazon.com/it/certification/certified-cloud-practitioner/</a></li>
<li>AWS CDK Development with Serverless-Stack</li>
<li>AWS Lambda parallel jobs for all types of workloads requiring Chrome instances(cypress, playwright, lighthouse testing, JSON-LD testing, all sort of other jobs that can be automated and scale linearly or exponentially)</li>
</ol>
<h3>Big Data, AI, ML</h3>
<ol>
<li>Google Data Analytics Certificate: <a href="https://grow.google/dataanalytics/">https://grow.google/dataanalytics/</a></li>
<li>30 Days of ML Kaggle: <a href="https://www.kaggle.com/thirty-days-of-ml">https://www.kaggle.com/thirty-days-of-ml</a></li>
<li>Kaggle Courses: <a href="https://www.kaggle.com/learn">https://www.kaggle.com/learn</a></li>
<li>Machine Learning Crash Course: <a href="https://developers.google.com/machine-learning/crash-course">https://developers.google.com/machine-learning/crash-course</a></li>
<li>FastAI: <a href="https://course.fast.ai/">https://course.fast.ai/</a></li>
</ol>
<h3>Personal Projects to work on</h3>
<ol>
<li>Serverless AWS Lambdas running as a SaaS to fulfill various &quot;developers needs&quot; explained previously</li>
<li>Fitness and Workout tracking, linked to my challenge &quot;DAILY STRONGER&quot;</li>
<li>Blog articles on Web Development more in line with the approach of <a href="https://www.swyx.io/learn-in-public/">&quot;swyx&quot;</a></li>
</ol>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[Jimini's – Pasta and Snacks made with insects like Crickets 🦗, Grasshoppers and more 🐛?]]></title>
          <link>https://riccardogiorato.com/blog/a/insects-food-review</link>
          <pubDate>2021-06-15</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/insects-food-review</guid>
          <category>review</category><category>insects</category><category>cooking</category><category>food</category><category>jiminis</category>
          <description>
          <![CDATA[<h2>The future of food are insects? Can you buy them online? How do they taste?</h2> <img src='https://cdn.riccardogiorato.com/insects-food-review/cover.jpg' alt='cover image for the article Jimini's – Pasta and Snacks made with insects like Crickets 🦗, Grasshoppers and more 🐛?'/><h4>WARNING!!</h4>
<p><strong>Don&#39;t continue reading this article if you might get sick or get sick by looking at insects or grillons. 🐜</strong></p>
<p><img src="https://cdn.riccardogiorato.com/insects-food-review/insects-1.jpg" alt=""></p>
<h3>Isn&#39;t it crazy to eat insects?</h3>
<p>This photo sum up many arguments that explains why a future with food made of insects might became important.
We need much less resources to farm them and they provide the same nutrients.</p>
<p><img src="https://cdn.riccardogiorato.com/insects-food-review/insects-2.jpg" alt=""></p>
<p>Eating them felt strange with a really strong flavor of curry or tomato due to the fact that those things are cooked and full of spices to help you eat them without feeling them strange as you might feel them like shrimps.</p>
<p><img src="https://cdn.riccardogiorato.com/insects-food-review/insects-4.jpg" alt=""></p>
<h3>Pasta made with Insects?</h3>
<p>I also tried their pasta made with insect flour but it didn&#39;t taste as good as the plain insects from the snacks. It felt different from other kind of pasta but neither in a good or bad way.
I enjoyed eating it with some tomatoes but other people might not enjoy it as well as I did.
<img src="https://cdn.riccardogiorato.com/insects-food-review/pasta.jpg" alt=""></p>
<h3>What&#39;s going to look like our future?</h3>
<p>Are we going to eat only insects? 🐜🐞 I don&#39;t think so.
We are probably going to start eating more different food such as those that I tried for this article.</p>
<h3>Where can I buy it?</h3>
<p>If you want to buy a Starter Package to have some fun with your friends go and visit <a href="https://jiminis.com">jiminis.com</a>.</p>
<p><strong>Thanks to <a href="https://jiminis.com">jiminis.com</a></strong></p>
<p><a href="https://jiminis.com"><img src="https://cdn.riccardogiorato.com/insects-food-review/insects-3.jpg" alt=""></a></p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[DAILY STRONGER - getting a better body 💪 and mind 🧠 each day!]]></title>
          <link>https://riccardogiorato.com/blog/a/dailystronger</link>
          <pubDate>2021-06-14</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/dailystronger</guid>
          <category>dailystronger</category><category>project</category><category>fitess</category><category>brain</category>
          <description>
          <![CDATA[<h2>12 months of constant transformation, done daily. Progress can be done only little by little.</h2> <img src='https://cdn.riccardogiorato.com/dailystronger.jpg' alt='cover image for the article DAILY STRONGER - getting a better body 💪 and mind 🧠 each day!'/><h3>What&#39;s this?</h3>
<p>A public project that will make me focus and improve the current and future status of my body and brain for the next 12 months.</p>
<h3>A project with just two simple goals</h3>
<ol>
<li><strong>Body 💪:</strong> Doing at least 5 minutes of body workouts every single day (fullbody or not, using my bodyweight, weights or other accesorries).</li>
<li><strong>Brain 🧠:</strong> Doing at least 5 minutes of meditation, can be done with audio, low-fi sounds, guided meditations or just by writing down my thoughts on a document.</li>
</ol>
<p>Both goals will need a timer to measure the minimum required time.
If I will want to do more I will be able to! The challenge is only on reaching these tiny daily goals.</p>
<h3>Outputs?</h3>
<p>I will document my progress as it follows:</p>
<ol>
<li>📝 <a href="https://docs.google.com/spreadsheets/d/1ftMBQyOgryoQMN00vElU8-J0pFE8vyUpRZ7Z-fqm0bw">Google Sheet document</a> where I will write my daily progress and achievements and related challenges: <a href="https://docs.google.com/spreadsheets/d/1ftMBQyOgryoQMN00vElU8-J0pFE8vyUpRZ7Z-fqm0bw">https://docs.google.com/spreadsheets</a>.</li>
<li>📑 At least 1 monthly article in this blog tagged with the category &quot;dailystronger&quot; to document my daily and monthly progress.</li>
</ol>
<h3>Extra challenges</h3>
<p>The project is mostly defined by the previously outlined goals.
To make it more interesting I will also do these things each month:</p>
<ol>
<li>prepare a list of challenges to complete during that month with a proper weekly planning</li>
<li>document these challenges in the previous document</li>
</ol>
<h3>Aren&#39;t these goals boring or not good?</h3>
<ol>
<li>Two simple goals to complete daily mean: less friction, less excuses and less time spent planning or doing these things.</li>
<li>We all have a single body and brain connected, without caring about one you can&#39;t have the other working fully well; you need to keep them in synch.</li>
</ol>
<h3>Timeline</h3>
<ul>
<li>Start of the project on the 1st of July 2021.</li>
<li>End next year on 1st of July 2022.</li>
</ul>
<p>These dates are needed cause I will combine and document the complete transformation in this blog.</p>
<h3></h3>
<blockquote>
<p>⚠️ The next two paragraphs are mainly written for anyone that will consider this project stupid or dumb or not creative enough.</p>
</blockquote>
<h3>Why posting it here? And why making it public?</h3>
<p>Making it public will help me with:</p>
<ol>
<li>Accountability: it&#39;s out there on the web and it&#39;ll add a bit of social pressure.</li>
<li>Public: being public means I will share various google sheets files with my progress publicly written on it.</li>
<li>Inspire: hopefully is going to inspire others to try to do similar challenges.</li>
</ol>
<h3>Why not simply doing these things without a &quot;project&quot;?</h3>
<p>I love trying to plan, improve things and I never tried a long term project publicly focusing only on the most core essentials things we all have (brains and bodies). This will be a new challenge for me and that&#39;s all it really matters for me.</p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[Plenny Shake Review (2021) - How does it taste? Should you buy it? One meal cost?]]></title>
          <link>https://riccardogiorato.com/blog/a/plenny-shake-review</link>
          <pubDate>2021-06-13</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/plenny-shake-review</guid>
          <category>review</category><category>fitess</category><category>cooking</category><category>food</category><category>plennyshake</category><category>jimmyjoy</category>
          <description>
          <![CDATA[<h2>The best meal shake alternative, less time cooking and more nutrients for less than 1.5€ euros meal!</h2> <img src='https://cdn.riccardogiorato.com/plenny-shake-review/cover.jpg' alt='cover image for the article Plenny Shake Review (2021) - How does it taste? Should you buy it? One meal cost?'/><h3>What&#39;s Jimmy Joy Plenny Shake?</h3>
<p>It&#39;s a complete, tasty and affordable food with minimal impact on your time and wallet.</p>
<blockquote>
<p>Disclaimer: I reviewed the <a href="https://jimmyjoy.com/pages/introduction-to-plenny-shake-v3-0">&quot;Plenny Shake v3.0&quot;</a>, the current version Q2 2021, they keep improving their formulas so if you read this in the future you might have bit different experiences.</p>
</blockquote>
<h3>What does Plenny Shake contains?</h3>
<p>One meal of <a href="http://i.refs.cc/4DpK9g1q?smile_ref=eyJzbWlsZV9zb3VyY2UiOiJzbWlsZV91aSIsInNtaWxlX21lZGl1bSI6IiIsInNtaWxlX2NhbXBhaWduIjoicmVmZXJyYWxfcHJvZ3JhbSIsInNtaWxlX2N1c3RvbWVyX2lkIjo1OTgwMzU0NzR9">Plenny Shake</a> provides you 20% of the daily recommended intakes for all macronutrients and micronutrients your body needs to function well: proteins, carbohydrates, fats, and more than 20 essential vitamins and minerals plus two small but powerful ingredients: probiotics and choline.</p>
<p>The main sources of its proteins are provided by:</p>
<ul>
<li>soy protein isolate.</li>
<li>oats.</li>
<li>soy flour.</li>
<li>flaxseeds.</li>
</ul>
<p>You will get around 400 kcal with two scoops of plenny. I usually have two scoops with super cold water and then eat some fruits to complete my quick meals with Plenny.</p>
<p>Here&#39;s a picture of the powder inside the boxes, the flaxseeds are completely ground so you cannot see any seed particle or feel them when drinking.
<img src="https://cdn.riccardogiorato.com/plenny-shake-review/powder.jpg" alt="the powder inside the boxes of Plenny"></p>
<h3>Why is it good?</h3>
<p>I tried all these brands meal shakes and this is my current ranking of them:</p>
<ul>
<li>🏆 <a href="http://i.refs.cc/4DpK9g1q?smile_ref=eyJzbWlsZV9zb3VyY2UiOiJzbWlsZV91aSIsInNtaWxlX21lZGl1bSI6IiIsInNtaWxlX2NhbXBhaWduIjoicmVmZXJyYWxfcHJvZ3JhbSIsInNtaWxlX2N1c3RvbWVyX2lkIjo1OTgwMzU0NzR9">Jimmy Joy Plenny Shake</a>, rating 9/10, the best shake I ever had up to now!</li>
<li><a href="https://bertrand.bio/">Bertrand</a>, old formula in 2018, rating 8/10 felt great and feels supernatural with tiny grains and nice taste!</li>
<li><a href="https://drink-mana.com/">Mana</a>, formula 2020, rating 7/10, drinking it always felt like drinking flour even after shaking it for minutes.</li>
<li>Alpha Foods from Amazon Vegan Proteins, rating 2/10, it wasn&#39;t drinkable and felt horrible! Don&#39;t buy alpha foods from Amazon and save some money to try <a href="http://i.refs.cc/4DpK9g1q?smile_ref=eyJzbWlsZV9zb3VyY2UiOiJzbWlsZV91aSIsInNtaWxlX21lZGl1bSI6IiIsInNtaWxlX2NhbXBhaWduIjoicmVmZXJyYWxfcHJvZ3JhbSIsInNtaWxlX2N1c3RvbWVyX2lkIjo1OTgwMzU0NzR9">Jimmy Joy shake</a>!</li>
</ul>
<p><strong>And the winner is...</strong> 🏆 Jimmy Joy Plenny Shake felt the best! The closest one was probably <a href="https://bertrand.bio/">Bertrand</a> but I tried it ages ago.</p>
<h3>The Taste</h3>
<p>Plenny feels super good, the taste of the different flavors feels real and not something entirely chemically made or with strange smells. My favorite flavors are:</p>
<ul>
<li>banana, 10/10</li>
<li>strawberry, 10/10</li>
<li>vanilla, 8/10</li>
</ul>
<p>I haven&#39;t tried the chocolate or the other flavors yet.</p>
<p><img src="https://cdn.riccardogiorato.com/plenny-shake-review/strawberry.jpg" alt="Strawberry box of plenny shake"></p>
<h3>The Price</h3>
<p>A single box will cost you around €14.00, within 10 meals and 8000 total kcal.
Just 1.40€ for 1 meal!</p>
<p>Let&#39;s do a quick comparison with other &quot;meal alternatives brands&quot; like Huel:</p>
<ul>
<li>Bertrand, 2.38€ x meal</li>
<li>Huel, 2€ x meal</li>
<li>Mana, 1.57€ x meal</li>
<li>Plenny Shake, 1.4€ x meal</li>
</ul>
<p><strong>And the winner again is...</strong> 🏆 Jimmy Joy! The Plenny Shake is also the least expensive but also the one with the best taste, it&#39;s a no brainer for me to choose this brand over and over again!</p>
<p>Buy I&#39;m not a fanboy, I am still looking for other brands that will come in the market.</p>
<p>I hope to discover new brands in this space with more innovative ingredients, if you find new ones to try just <a href="https://twitter.com/riccardogiorato">let me know on Twitter</a>!</p>
<h3>Would you like to try it?</h3>
<p>If you want you can use <a href="http://i.refs.cc/4DpK9g1q?smile_ref=eyJzbWlsZV9zb3VyY2UiOiJzbWlsZV91aSIsInNtaWxlX21lZGl1bSI6IiIsInNtaWxlX2NhbXBhaWduIjoicmVmZXJyYWxfcHJvZ3JhbSIsInNtaWxlX2N1c3RvbWVyX2lkIjo1OTgwMzU0NzR9">my referral link</a> so you will get 10 euros off your first order:</p>
<ul>
<li><a href="http://i.refs.cc/4DpK9g1q?smile_ref=eyJzbWlsZV9zb3VyY2UiOiJzbWlsZV91aSIsInNtaWxlX21lZGl1bSI6IiIsInNtaWxlX2NhbXBhaWduIjoicmVmZXJyYWxfcHJvZ3JhbSIsInNtaWxlX2N1c3RvbWVyX2lkIjo1OTgwMzU0NzR9">affiliate link to Jimmy Joy to get 10€ off your first order</a></li>
</ul>
<blockquote>
<p>When you make your first order, you&#39;ll also get this beautiful shaker bottle!</p>
</blockquote>
<p><img src="https://cdn.riccardogiorato.com/plenny-shake-review/empty.jpg" alt="With the first order you get this beautiful shaker bottle"></p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[How to transfer Conflux CFX to Binance]]></title>
          <link>https://riccardogiorato.com/blog/a/transfer-cfx-to-binance</link>
          <pubDate>2021-06-11</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/transfer-cfx-to-binance</guid>
          <category>crypto</category><category>cfx</category><category>conflux</category><category>binance</category><category>mining</category>
          <description>
          <![CDATA[<h2>Transfering mined CFX to Binance can be done simply thanks to TRX and USDT coins!</h2> <img src='https://cdn.riccardogiorato.com/transfer-cfx-to-binance.jpg' alt='cover image for the article How to transfer Conflux CFX to Binance'/><h3>The steps to follow</h3>
<ol>
<li>First mine your CFX coins directly in a private wallet or in an exchange wallet.</li>
<li>Transfer your CFX in one of the many exchanges like <a href="https://www.okex.com/join/6202147"><strong>okex</strong></a>, my favourite one to store CFX coins.</li>
<li>Sell the CFX for USDT in the exchange.</li>
<li>Transfer the USDT to your Binance account using TRX or TRC20.</li>
<li>Place a new order on Binance converting your USDT back to CFX.</li>
</ol>
<p><strong>Fees and Timing:</strong></p>
<ul>
<li>using <strong>USDT TRC20/TRX</strong> you pay only 1 USDT and the transfer takes 1/2 minutes.</li>
<li>using USDT ERC20/ETH gets much more expensive( at time of writing 2021 June) 6 USDT and the transfer will take around 3/4 minute if the network isn&#39;t congested.</li>
</ul>
<h3>Summary</h3>
<p>Transfering CFX without strange swaps can be done easily with USDT.
The problem of USDT would be if you would use ERC20 on ETH where the fees for a simple transfer would be much much higher.</p>
<h3>Alternatives without selling CFX for USDT?</h3>
<p>You could use this guide on <a href="https://forum.conflux.fun/t/how-to-cross-chain-cfx-from-conflux-network-to-binance-smart-chain-bsc/5885">&quot;How to Cross-Chain CFX From Conflux Network to Binance Smart Chain (BSC)&quot;</a>.</p>
<p>Personally I don&#39;t like this approach because it requires too many steps and actions to complete the same process, the only pros of this method is the fee, in this case just 0.25 CFX and not 1 USDT.</p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[What I like about blogging?]]></title>
          <link>https://riccardogiorato.com/blog/a/what-i-like-about-blogging</link>
          <pubDate>2021-06-09</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/what-i-like-about-blogging</guid>
          
          <description>
          <![CDATA[<h2>Writing in a blog for me helps to write down ideas or to experiment</h2> <img src='https://cdn.riccardogiorato.com/what-i-like-about-blogging.jpg' alt='cover image for the article What I like about blogging?'/><ul>
<li><a href="#why-blogging-and-not-videos-or-tiktoks">Why blogging and not videos or tiktoks?</a></li>
<li><a href="#what-is-brining-me-back-to-blogging">What is brining me back to blogging?</a></li>
<li><a href="#what-do-i-want-to-do-less-with-blogging">What do I want to do less with blogging?</a></li>
<li><a href="#action-items-to-act-on-now">Action Items to act on now</a></li>
</ul>
<h3>Why blogging and not videos or tiktoks?</h3>
<p>Writing feels more personal and more private.</p>
<p>You don&#39;t watch right into a camera, you don&#39;t expose yourself too much.</p>
<p>It&#39;s also maybe the fastest way cause you can just typeout some words and you don&#39;t need to worry about framing, color balance, audio noise, fixing the timing or peace.</p>
<h3>What is brining me back to blogging?</h3>
<ol>
<li>Experiments! With a blogpost I can document my progress or experiments.</li>
<li>Reviewing and helping other find great products/experiences/things to do or places to visit.</li>
<li>Passive reaching out, people will google stuff and maybe find my content but even if they don&#39;t find me I&#39;m happy cause the content will be present anytime, won&#39;t disappear after 10 minutes like most of TikTok uploaded daily.</li>
</ol>
<h3>What do I want to do less with blogging?</h3>
<ol>
<li>Going to simple on articles, without helping the end user.</li>
<li>Not experementing on myself or going too easy with ideas and tests! Try things and move fast!</li>
<li>Stopping this trend after a few weeks, I&#39;m in this for the long term. Even if I don&#39;t rememebr how to write perfectly now I will practice each month getting better weekly.</li>
</ol>
<h3>Action Items to act on now</h3>
<ol>
<li>Publish this article!</li>
<li>Find 10 experiments to try!</li>
<li>Plan and try 3 experiments from these 1o in the next 30 days (one each 10 days)!</li>
</ol>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[Where can I find new coins to GPU or CPU mine?]]></title>
          <link>https://riccardogiorato.com/blog/a/where-to-discover-new-coins-to-mine</link>
          <pubDate>2021-06-08</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/where-to-discover-new-coins-to-mine</guid>
          <category>crypto</category><category>mining</category>
          <description>
          <![CDATA[<h2>Every single month I find myself looking for new crypto coins to mine. So here's a list of places to go look and find new ones! - updated 2021</h2> <img src='https://cdn.riccardogiorato.com/discover-coins-2021.jpg' alt='cover image for the article Where can I find new coins to GPU or CPU mine?'/><h3>Top 5 websites to find new cryptocurrencies to mine:</h3>
<p>Ordered by discovery grade, finding the best coins for you!</p>
<ul>
<li><a href="#coin-market-cap">Coin Market Cap</a> 9/10</li>
<li><a href="#2cryptocalc">2cryptocalc</a> 9/10</li>
<li><a href="#miningpoolstats">miningpoolstats</a> 8/10</li>
<li><a href="#whattomine">WhatToMine</a> 7/10</li>
<li><a href="#minerstat">minerstat</a> 5/10</li>
</ul>
<h3>Places you won&#39;t find new coins (IMHO, just my opinion)</h3>
<ul>
<li><a href="https://www.reddit.com/r/gpumining/">reddit communities</a>, they all try to sponsor too much specific coins or too mainstream ones</li>
<li>discord communities, usually full of messages and makes it harder to track the new coins or measure their share of the market</li>
</ul>
<h3>Coin Market Cap</h3>
<p>One of the largets websites to <a href="https://coinmarketcap.com/">track cryptocurrencies values</a> and the whole market of crypto.
Even if pricing tracking and other market stats are its main feature you can find only coin possible to mine using the filters here: <a href="https://coinmarketcap.com/">coinmarketcap.com</a></p>
<p>Discovery grade: 9/10</p>
<h3>2cryptocalc</h3>
<p>Brought to you by the famous <a href="https://2miners.com/">&quot;2miners&quot;</a> pools, it highlights almost only the coins you will be able to mine from 2miners. You can easily get custom links to share with friends or on social media for your specific grafic card, in this case an <a href="https://2cryptocalc.com/gpu/24h/2080/1/">Nvidia 2080 GPU</a> or go directly here: <a href="https://2cryptocalc.com">2cryptocalc.com</a></p>
<p>Discovery grade: 9/10</p>
<h3>miningpoolstats</h3>
<p><a href="https://miningpoolstats.stream/">This is the most ugly</a> but also probably the most straight to the point to show you how many pools or how much hashrate each coin is having currenlty next to the coin prices: <a href="https://miningpoolstats.stream">miningpoolstats.stream</a></p>
<p>Discovery grade: 8/10</p>
<h3>WhatToMine</h3>
<p><a href="https://whattomine.com/">WhatToMine</a> is probably the most famous webiste to find coins to mine.
They showcase ton of coins but they tend to vary at most once every month. access here: <a href="https://whattomine.com/">whattomine.com</a></p>
<p>Discovery grade: 7/10</p>
<h3>minerstat</h3>
<p>This has one of the best UI but it&#39;s focused too much on showing too many options like Nicehash or other multi-coin pools, and sharable GPU links, again like this for a <a href="https://minerstat.com/hardware/nvidia-rtx-2080">2080 GPU</a>
They help you find pools to earn more but with less off the trends coins, access here: <a href="https://minerstat.com/">minerstat.com</a></p>
<p>Discovery grade: 5/10</p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[Remote work from Jesolo Italy 2024]]></title>
          <link>https://riccardogiorato.com/blog/a/remote-work-in-jesolo</link>
          <pubDate>2021-06-02</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/remote-work-in-jesolo</guid>
          <category>travel</category><category>remote work</category><category>jesolo</category><category>digital nomad</category>
          <description>
          <![CDATA[<h2>Learn how to live as a 🏝 DIGITAL NOMAD 💻 in Jesolo Lido:  where to find an accomodation, where to work, where to have fun and more!</h2> <img src='https://cdn.riccardogiorato.com/jesolo/jesolo-cover.jpg' alt='cover image for the article Remote work from Jesolo Italy 2024'/><h2>Why is Jesolo a good place for Remote Workers?</h2>
<ul>
<li><a href="#lots-of-new-real-estate-buildingsvillages">Lots of new Real Estate buildings/villages</a></li>
<li><a href="#discounts-for-accomodation-in-off-season">Discounts for accomodation in off season</a></li>
<li><a href="#food-resturants-and-relax">Food, resturants and relax!</a></li>
<li><a href="#the-city-center-and-the-chilly-sides">The City Center and the chilly sides</a></li>
<li><a href="#our-experience-in-may-2021">Our experience in May 2021</a></li>
<li><a href="#total-cost-of-working-remotly-in-jesolo">Total cost of working remotly in Jesolo</a></li>
</ul>
<h3>Lots of new Real Estate buildings/villages</h3>
<p>In the last few years Jesolo Lido has been fueld by huge investments and going around the city center you can see many constructions sites on each block.</p>
<p>We stayed in May 2021 and we had seen more than 5 constructions site just around our apartment a bit off the center area, in central areas they can be many more.</p>
<p>Here&#39;s a quick list of just a few apartments currently selling or available to be rented; all of them look incredible and tend to cover really high price points.</p>
<blockquote>
<p>A 4-room flat of 130m2 with 2 bathroom listed for 895,000€</p>
</blockquote>
<p><a href="https://www.immobiliare.it/en/annunci/77346050/"><img src="https://cdn.riccardogiorato.com/jesolo/Cortellazzo_Pineta.jpg" alt="Four room flat in Jesolo Cortellazzo Pineta"></a></p>
<blockquote>
<p>A 5-room flat with 2 bathroom and 3 rooms listed for 890,000€</p>
</blockquote>
<p><a href="https://www.immobiliare.it/en/annunci/88461749/"><img src="https://cdn.riccardogiorato.com/jesolo/Residence_The_Summer_Houses.jpg" alt="Jesolo Residence The Summer Houses"></a></p>
<p>This boom of new buildings doesn&#39;t mean you will need to go in these crazy expensive ones, it means that you will have a lot of choices for new apartments to stay in and lot of comeptition menas lower prices.</p>
<p>To find accomodations you can look on these websites:</p>
<ol>
<li><a href="https://www.jesoloholidayrent.it/affitto-jesolo">JesoloHolidayRent</a>: the best local provider with a ton of apartments, we stayed in one of their apartments and it was awesome!</li>
<li><a href="https://www.airbnb.it/s/Jesolo--Lido-di-Jesolo--VE--Italia/homes">Airbnb</a>, the only one!</li>
<li><a href="https://www.immobiliare.it/affitto-case/jesolo/">Immobiliare.it</a>, some of these ask long contracts, not just 1 or few months, check the description if they require longer term contracts.</li>
</ol>
<h3>Discounts for accomodation in off season</h3>
<p>You have 3 different tier of prices in Jesolo or in near coastline cities like Caorle or Lignano.</p>
<ol>
<li>💵 Cheap months are from January to April and October to December; 600€-800€/month.</li>
<li>💵💵 Medium months are May and September, these will be the best months to find more sunny weather; 800€-1000€/month.</li>
<li>💵💵💵💵 The most expensive months are the summer months or June-July-August, here the prices are 3/4 times higher than the other 2 periods; 3000€-4000€/month.</li>
</ol>
<h3>Food, resturants and relax!</h3>
<blockquote>
<p>During hot months from May to September walking along the beach feels incredible and the soft breeze makes you want to jump in the water</p>
</blockquote>
<p><img src="https://cdn.riccardogiorato.com/jesolo/sea.jpg" alt="Jesolo sea view from the beach"></p>
<blockquote>
<p>We are in Italy you will find incredible Pizza 🍕</p>
</blockquote>
<p><img src="https://cdn.riccardogiorato.com/jesolo/pizza.jpg" alt="Two Pizzas one with pepperoni/salame and another custom one"></p>
<h3>The City Center and the chilly sides</h3>
<p>As you can see in this image there are a few areas to remember:</p>
<ol>
<li>the centeral area is the city center, in black, there you will find most of the bars/resturants and more expensive hotels and apartments.</li>
<li>on the chilly sides you will find a bit less movment, less shops or bars but more cheaper solutions, in the two blu squares.</li>
<li>finally the biggest supermarket are located near the city center with the biggest stores being Lidl or Famila or Aldi, in the green circular area.</li>
</ol>
<p><img src="https://cdn.riccardogiorato.com/jesolo/jesolo-map.jpg" alt="Jesolo annotated map for digital nomads"></p>
<h3>Our experience in May 2021</h3>
<blockquote>
<p>Work Macbook with a background view of a new construction site</p>
</blockquote>
<p><img src="https://cdn.riccardogiorato.com/jesolo/laptop_work.jpg" alt="Work Macbook with a background view of a construction site"></p>
<blockquote>
<p>View from our apartment from Saint Tropez residence, Jesolo VE</p>
</blockquote>
<p><img src="https://cdn.riccardogiorato.com/jesolo/apartment.jpg" alt="View from our apartment from Saint Tropez residence, Jesolo VE"></p>
<h3>Total cost of working remotly in Jesolo</h3>
<ul>
<li>around 1000€ for 2 person, or 800€ for 1 person in less &quot;hot&quot; months like May or September</li>
<li>around 200 to 300€ of food</li>
<li>going out to bars or resturants can be a bit more pricy than other cities in Italy around 10€ for normal pizza and around 15€ for stranger ones(with more things on top) but going to bars can be really cheap if you find good spots(mostly cause you have so many bars trying to get you to drink there)</li>
</ul>
<p><strong>Total &quot;drafted&quot; cost:</strong> <strong>1300-1500€/month</strong> in 2, 200€ less if alone.</p>
<p>This is just a draft or a quick reference to understand if you are looking for apartments and you might have found to crazy expensive solutions.</p>
<p><img src="https://cdn.riccardogiorato.com/jesolo/pano.jpg" alt="360 view of the beachfront"></p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[How to mine BitTorrent (BTT) in 2021 with a Mac?]]></title>
          <link>https://riccardogiorato.com/blog/a/mining-btt-on-mac</link>
          <pubDate>2021-06-01</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/mining-btt-on-mac</guid>
          <category>crypto</category><category>btt</category><category>mining</category>
          <description>
          <![CDATA[<h2>Learn how to mine BitTorrent (BTT) directly with your Mac, you wont need an Nvidia GPU.</h2> <img src='https://cdn.riccardogiorato.com/btt-cover.jpg' alt='cover image for the article How to mine BitTorrent (BTT) in 2021 with a Mac?'/><h3>What is BitTorrent?</h3>
<p><a href="https://www.bittorrent.com/">BitTorrent</a> is a protocol that allows fast and free downloading of large files using minimal Internet bandwidth.</p>
<p>In 2018, TRON completed its acquisition of BitTorrent, bringing this platform under the control of Justin Sun.
TRON is also behind the addition of cryptocurrencies to BitTorrent, as the BTT token was launched on its blockchain, a strategy designed in order to add more decentralized features to TRON’s platform.</p>
<h3>How to &quot;mine&quot; BTT on a Mac?</h3>
<p>The BitTorrent platform bases its protocol on the Delegated Proof-of-Stake algorithm.
Therefore it is not possible to mine BTT in the traditional sense of the word, as is the case with Bitcoin or Ravencoin.</p>
<p>To solve this issue we will switch to earning BTT by mining &quot;Monero&quot; using unMineable!
unMineable slogan/description is &quot;Mine your favorite non-mineable crypto coin or token!&quot;</p>
<p>To get started you will need a BTT wallet, if you want to have one simply I suggest you to register and use <a href="https://www.binance.com/en/register?ref=N6HMNPCF">Binance</a>.</p>
<ol>
<li>Copy your BTT address like this one: &quot;TSxPegAweaAMrvZGJEd3LRJMtZm7XC14oc&quot; from your wallet.</li>
<li>Find the new release of <a href="https://github.com/xmrig/xmrig/releases">Monero miner &quot;xmrig&quot; for your mac here</a>.</li>
</ol>
<ul>
<li>If you have a Mac with an M1 <a href="https://github.com/xmrig/xmrig/releases/download/v6.12.2/xmrig-6.12.2-macos-arm64.tar.gz">download the file with &quot;arm64&quot; at the end</a>.</li>
<li>If you have an Intel Mac <a href="https://github.com/xmrig/xmrig/releases/download/v6.12.2/xmrig-6.12.2-macos-x64.tar.gz">download the file with &quot;x64&quot; at the end</a>.</li>
</ul>
<ol start="3">
<li>Unzip the miner files, in a folder that you would like.</li>
<li>Create a &quot;btt.sh&quot; file in the same folder where you unzipped the miner.</li>
<li>Copy this content in this file, or if you prefer <a href="https://gist.github.com/riccardogiorato/a35e46699c9cff197d144c4789cf3460">get the file here</a>:</li>
</ol>
<pre><code>./xmrig -o rx.unmineable.com:3333 -a rx -k -u BTT:ADDRESS_HERE.mac#0o5w-vby4 -p x
pause
</code></pre>
<ol start="6">
<li>Replace the text ADDRESS_HERE with your BTT address like: TSxPegAweaAMrvZGJEd3LRJMtZm7XC14oc.</li>
<li>Open up a terminal in the same folder and run the &quot;./btt.sh&quot; command.</li>
<li>Open unMineable web ui after you sent a few shares to visualize your progress: <a href="https://unmineable.com/coins/BTT/address/TSxPegAweaAMrvZGJEd3LRJMtZm7XC14oc">&quot;https://unmineable.com/coins/BTT/address/ADDRESS_HERE&quot;</a>.</li>
<li>Remember to use my referral code &quot;0o5w-vby4&quot; in the btt.sh file after the name of your worker after the &quot;#&quot;, this will reduce a bit the 1% fee you would need to pay to <a href="https://unmineable.com/?ref=0o5w-vby4">unmineable.com</a>.</li>
</ol>
<h3>Resources:</h3>
<ol>
<li><a href="https://www.binance.com/en/register?ref=N6HMNPCF">Binance Registration Link</a> to get free BTT wallet.</li>
<li><a href="https://github.com/xmrig/xmrig/releases">Monero Miner</a> to mine on your Mac.</li>
<li><a href="https://gist.github.com/riccardogiorato/a35e46699c9cff197d144c4789cf3460">BTT Miner shell file</a> shell file to mine BTT with Monero Miner.</li>
<li><a href="https://unmineable.com/?ref=0o5w-vby4">unMineable with referral link</a> online pool to earn BTT by mining monero!</li>
</ol>
<p><a href="https://unmineable.com/?ref=0o5w-vby4"><img src="https://cdn.riccardogiorato.com/btt-unmineable.jpg" alt=""></a></p>
]]>
          </description>
      </item>
        <item>
          <title><![CDATA[A new blog to start!]]></title>
          <link>https://riccardogiorato.com/blog/a/new-blog</link>
          <pubDate>2021-04-23</pubDate>
          <guid isPermaLink="false">https://riccardogiorato.com/blog/a/new-blog</guid>
          
          <description>
          <![CDATA[<h2>A blank canvas to start!</h2> <img src='https://cdn.riccardogiorato.com/new-blog-cover.jpg' alt='cover image for the article A new blog to start!'/><h3>Why a new blog again?</h3>
<p>This is a new blog without old articles!</p>
<p>I wrote only articles about web development for the last 2 years.
But sometimes you need to change.</p>
<p>I will be writing on things outside of development/programming from finance, crypto, travel, remote work, food and much more!</p>
<h3>In a summary?</h3>
<p>New topics.</p>
<p>New ideas.</p>
<p>No old contents.</p>
<p>No distractions.</p>
]]>
          </description>
      </item>
      </channel>
    </rss>