<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Development on Stephen Ajulu</title><link>https://ajulu.netlify.app/tags/development/</link><atom:link href="https://ajulu.netlify.app/tags/development/feed.xml" rel="self" type="application/rss+xml"/><description/><generator>Hugo -- gohugo.io</generator><language>en-us</language><copyright>Stephen Ajulu.</copyright><lastBuildDate>Mon, 27 Apr 2026 10:00:00 +0000</lastBuildDate><item><title>Implementing Webmentions on Hugo: An IndieWeb Guide</title><link>https://ajulu.netlify.app/posts/indieweb-webmention-hugo-guide/</link><pubDate>Mon, 27 Apr 2026 10:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/indieweb-webmention-hugo-guide/</guid><description>&lt;p&gt;Webmentions are a cornerstone of the IndieWeb movement. They allow you to &amp;ldquo;own your data&amp;rdquo; while still participating in the broader social web. Instead of having a centralized comment system (like Disqus), Webmentions allow you to receive notifications whenever someone links to your post from their own site, or even from social networks like Mastodon or Twitter.&lt;/p&gt;
&lt;h2 id="how-it-works"&gt;How it Works&lt;/h2&gt;
&lt;p&gt;The workflow typically follows the &lt;strong&gt;POSSE&lt;/strong&gt; principle: &lt;strong&gt;P&lt;/strong&gt;ublish (on) &lt;strong&gt;O&lt;/strong&gt;wn &lt;strong&gt;S&lt;/strong&gt;ite, &lt;strong&gt;S&lt;/strong&gt;yndicate &lt;strong&gt;E&lt;/strong&gt;lsewhere.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Webmentions are a cornerstone of the IndieWeb movement. They allow you to &ldquo;own your data&rdquo; while still participating in the broader social web. Instead of having a centralized comment system (like Disqus), Webmentions allow you to receive notifications whenever someone links to your post from their own site, or even from social networks like Mastodon or Twitter.</p>
<h2 id="how-it-works">How it Works</h2>
<p>The workflow typically follows the <strong>POSSE</strong> principle: <strong>P</strong>ublish (on) <strong>O</strong>wn <strong>S</strong>ite, <strong>S</strong>yndicate <strong>E</strong>lsewhere.</p>
<ol>
<li><strong>Syndication:</strong> You publish a post here and share it on Mastodon or Twitter.</li>
<li><strong>Interaction:</strong> Someone likes or replies to your syndicated post on social media.</li>
<li><strong>Bridge:</strong> A service like <a href="https://bridgy.gy">Bridgy</a> sees that interaction and sends a &ldquo;Webmention&rdquo; to your site&rsquo;s endpoint.</li>
<li><strong>Inbox:</strong> Your site&rsquo;s endpoint (configured via <a href="https://webmention.io">Webmention.io</a>) receives the mention.</li>
<li><strong>Display:</strong> Your Hugo templates fetch these mentions via JavaScript and display them at the bottom of your post.</li>
</ol>
<div class="member-gate" data-slug="indieweb-webmention-hugo-guide">
    <div class="unlocked-content" style="display:none;"></div>
    <div class="locked-message">
        <div class="gate-overlay">
            <span class="gate-icon">🔒</span>
            <h2 class="gate-title">Premium Insight</h2>
            <p>This deep-dive is exclusive to <strong>Premium Members</strong>.</p>
            <div class="gate-actions">
                <a href="/membership" class="btn">Unlock Access</a>
                <button class="btn-secondary" onclick="netlifyIdentity.open('login')">Already a member? Log in</button>
            </div>
        </div>
    </div>
</div>

<script>
    (function() {
        function checkAccess() {
            const user = window.netlifyIdentity && netlifyIdentity.currentUser();
            const isPremium = user && user.app_metadata && user.app_metadata.roles && user.app_metadata.roles.includes('premium');
            
            console.log("Member Gate: Checking access. User:", user ? user.email : "Logged Out", "Premium:", isPremium);

            document.querySelectorAll('.member-gate').forEach(gate => {
                const unlocked = gate.querySelector('.unlocked-content');
                const locked = gate.querySelector('.locked-message');
                const slug = gate.getAttribute('data-slug');
                
                if (isPremium) {
                    locked.style.display = 'none';
                    unlocked.style.display = 'block';
                    
                    if (unlocked.innerHTML.trim() === '') {
                        unlocked.innerHTML = '<p class="loading-premium">🔒 Retrieving premium insight...</p>';
                        
                        netlifyIdentity.currentUser().jwt().then(token => {
                            return fetch(`/api/get-premium-content?slug=${slug}`, {
                                headers: { 'Authorization': `Bearer ${token}` }
                            });
                        })
                        .then(res => {
                            if (!res.ok) throw new Error("Gated fetch failed");
                            return res.json();
                        })
                        .then(data => {
                            unlocked.innerHTML = data.html;
                        })
                        .catch(err => {
                            console.error("Gating retrieval error:", err);
                            unlocked.innerHTML = '<p class="error">⚠️ Failed to retrieve content. Please check your connection.</p>';
                        });
                    }
                } else {
                    unlocked.style.display = 'none';
                    locked.style.display = 'block';
                }
            });
        }

        
        if (window.netlifyIdentity) {
            checkAccess();
            netlifyIdentity.on('init', checkAccess);
            netlifyIdentity.on('login', checkAccess);
            netlifyIdentity.on('logout', checkAccess);
        } else {
            
            document.addEventListener('DOMContentLoaded', () => {
                if (window.netlifyIdentity) {
                    checkAccess();
                    netlifyIdentity.on('init', checkAccess);
                }
            });
        }
    })();
</script>

<style>
.locked-message {
    padding: 40px;
    background: var(--base-offset-color);
    border-radius: 8px;
    border: 1px dashed var(--highlight-color);
    text-align: center;
    margin: 30px 0;
}

.gate-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.gate-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--highlight-color);
    color: var(--highlight-color);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}
</style>

<h2 id="why-bother">Why Bother?</h2>
<p>By using Webmentions, you become a first-class citizen of the open web. You aren&rsquo;t just a &ldquo;user&rdquo; on a platform; you are a node in a distributed social network.</p>
<p>Happy hacking!</p>
]]></content:encoded><media:content url="https://images.unsplash.com/photo-1516259762381-22954d7d3ad2?q=80&amp;w=1000&amp;auto=format&amp;fit=crop" medium="image"/></item><item><title>How to Use Optimized Images</title><link>https://ajulu.netlify.app/posts/image-optimization-demo/</link><pubDate>Sat, 25 Apr 2026 10:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/image-optimization-demo/</guid><description>&lt;p&gt;To keep your site fast and achieve high scores on Google PageSpeed Insights, you should use the new &lt;code&gt;img&lt;/code&gt; shortcode for any local images you add to your posts.&lt;/p&gt;
&lt;h2 id="why-use-the-img-shortcode"&gt;Why use the &lt;code&gt;img&lt;/code&gt; shortcode?&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;WebP Support:&lt;/strong&gt; It automatically generates a WebP version of your image, which is significantly smaller.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Responsive Loading:&lt;/strong&gt; It creates a &lt;code&gt;srcset&lt;/code&gt; so mobile devices download smaller versions of the image.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Lazy Loading:&lt;/strong&gt; Images only load when they are about to enter the viewport.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automatic Dimensions:&lt;/strong&gt; Prevents layout shifts (CLS) by adding &lt;code&gt;width&lt;/code&gt; and &lt;code&gt;height&lt;/code&gt; attributes.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="how-to-use-it"&gt;How to use it&lt;/h2&gt;
&lt;p&gt;Instead of standard Markdown like &lt;code&gt;![Alt](path)&lt;/code&gt;, use this:&lt;/p&gt;</description><content:encoded><![CDATA[<p>To keep your site fast and achieve high scores on Google PageSpeed Insights, you should use the new <code>img</code> shortcode for any local images you add to your posts.</p>
<h2 id="why-use-the-img-shortcode">Why use the <code>img</code> shortcode?</h2>
<ol>
<li><strong>WebP Support:</strong> It automatically generates a WebP version of your image, which is significantly smaller.</li>
<li><strong>Responsive Loading:</strong> It creates a <code>srcset</code> so mobile devices download smaller versions of the image.</li>
<li><strong>Lazy Loading:</strong> Images only load when they are about to enter the viewport.</li>
<li><strong>Automatic Dimensions:</strong> Prevents layout shifts (CLS) by adding <code>width</code> and <code>height</code> attributes.</li>
</ol>
<h2 id="how-to-use-it">How to use it</h2>
<p>Instead of standard Markdown like <code>![Alt](path)</code>, use this:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-markdown" data-lang="markdown"><span class="line"><span class="cl">




  
  
  
    <img src="/images/me.webp" alt="Stephen Ajulu"  loading="lazy">
  




</span></span></code></pre></td></tr></table>
</div>
</div><p><em>Note: The <code>src</code> path should be relative to the <code>assets/</code> or <code>static/</code> directory depending on where you store them, but it works best with images in <code>assets/</code> for full processing.</em></p>
<h2 id="example-in-action">Example in Action</h2>





  
  
  
    <img src="/images/me.webp" alt="Stephen Ajulu" class="author-demo" loading="lazy">
  




<p>You can also pass a custom CSS class:</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">1
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-markdown" data-lang="markdown"><span class="line"><span class="cl">




  
  
  
    <img src="/images/me.webp" alt="Alt text" class="my-custom-class" loading="lazy">
  




</span></span></code></pre></td></tr></table>
</div>
</div>]]></content:encoded><media:content url="https://ajulu.netlify.app/images/me.webp" medium="image"/></item><item><title>Brain-Computer Interfaces: The Future of Human-Machine Interaction</title><link>https://ajulu.netlify.app/posts/brain-computer-interfaces-the-future-of-human-machine-interaction/</link><pubDate>Sat, 25 Feb 2023 10:41:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/brain-computer-interfaces-the-future-of-human-machine-interaction/</guid><description>&lt;p&gt;In recent years, the term Brain-Computer Interface (BCI) has gained a lot of attention in the world of science and technology. A BCI is a direct communication pathway between the brain and an external device, such as a computer or robotic system. This technology has the potential to revolutionize the way we interact with machines and the world around us. In this article, we will explore the What, the How, the Why, and the Where of BCIs, and review the work being done by Neuralink, a company co-founded by Elon Musk, which is at the forefront of BCI research and development.&lt;/p&gt;</description><content:encoded><![CDATA[<p>In recent years, the term Brain-Computer Interface (BCI) has gained a lot of attention in the world of science and technology. A BCI is a direct communication pathway between the brain and an external device, such as a computer or robotic system. This technology has the potential to revolutionize the way we interact with machines and the world around us. In this article, we will explore the What, the How, the Why, and the Where of BCIs, and review the work being done by Neuralink, a company co-founded by Elon Musk, which is at the forefront of BCI research and development.</p>
<h3 id="what-is-a-brain-computer-interface-bci">What is a Brain-Computer Interface (BCI)?</h3>
<p>A Brain-Computer Interface (BCI) is a system that enables direct communication between the brain and an external device, bypassing the traditional means of communication, such as speech or typing. BCIs use electrodes implanted in the brain or placed on the scalp to record the electrical activity of the brain. The recorded signals are then analyzed and decoded to determine the user&rsquo;s intent, which is then translated into actions by the external device. BCIs can be used to control prosthetic limbs, communicate with others, or even navigate a computer or robotic system.</p>
<h3 id="how-does-a-brain-computer-interface-bci-work">How does a Brain-Computer Interface (BCI) work?</h3>
<p>BCIs work by detecting and interpreting the electrical signals generated by the brain. The signals are picked up by electrodes implanted in the brain or placed on the scalp and then amplified and processed by a computer. The computer then analyzes the signals to determine the user&rsquo;s intent, which is then translated into actions by the external device. The process of analyzing the signals is complex and involves sophisticated algorithms and machine-learning techniques. BCIs can be either invasive or non-invasive, depending on the location of the electrodes.</p>
<h3 id="why-is-a-brain-computer-interface-bci-important">Why is a Brain-Computer Interface (BCI) important?</h3>
<p>BCIs have the potential to revolutionize the way we interact with machines and the world around us. They can provide a means of communication for people with severe disabilities or those who have lost the ability to speak. They can also be used to control prosthetic limbs, restoring some of the lost functionality to amputees. In addition, BCIs can be used to enhance the performance of healthy individuals, such as athletes or pilots, by allowing them to control machines or devices more effectively.</p>
<h3 id="where-is-brain-computer-interface-bci-technology-being-used">Where is Brain-Computer Interface (BCI) technology being used?</h3>
<p>BCI technology is currently being used in a variety of applications, including healthcare, gaming, and robotics. In healthcare, BCIs are being used to help people with severe disabilities to communicate and control their environment. In gaming, BCIs are being used to provide a more immersive experience by allowing players to control the game with their thoughts. In robotics, BCIs are being used to control robotic systems in industrial and military applications.</p>
<h3 id="neuralink">Neuralink</h3>
<p>Neuralink is a company co-founded by Elon Musk that is focused on developing and commercializing BCI technology. The company&rsquo;s mission is to create a direct communication pathway between humans and machines, with the ultimate goal of enhancing human cognition and treating neurological disorders. Neuralink&rsquo;s technology is based on a flexible thread-like electrode that can be implanted in the brain with minimal damage to the surrounding tissue. The company is currently working on developing a brain implant that can transmit signals wirelessly, eliminating the need for external wiring.</p>
<p>Neuralink&rsquo;s technology has the potential to revolutionize the field of BCI research and development. The company&rsquo;s flexible electrodes are much smaller and less invasive than traditional electrodes, which can cause damage to the brain tissue. In addition, the wireless transmission of signals eliminates the risk of infection and provides greater flexibility in the placement and use of the device. Neuralink&rsquo;s technology has already been tested in animals, with promising results, and the company is currently conducting human trials.</p>
<p>Neuralink&rsquo;s ultimate goal is to develop a brain implant that can enhance human cognition and enable us to interact with machines in a more natural and intuitive way. This could have profound implications for a wide range of industries, from healthcare to entertainment to transportation. However, there are also concerns about such technology&rsquo;s potential risks and ethical implications, including the possibility of hacking and the loss of privacy.</p>
<p>In conclusion, Brain-Computer Interfaces (BCIs) are a promising technology that has the potential to revolutionize the way we interact with machines and the world around us. BCIs can be used to restore lost functionality to those with disabilities, enhance the performance of healthy individuals, and provide new ways of communicating and interacting with machines. Neuralink, a company co-founded by Elon Musk, is at the forefront of BCI research and development, with a focus on developing a brain implant that can enhance human cognition and enable more natural and intuitive interaction with machines. While there are concerns about the potential risks and ethical implications of such technology, the potential benefits are significant and could lead to a new era of human-machine interaction.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/photo-1617791160536-598cf32026fb.webp" medium="image"/></item><item><title>The Ultimate Guide to Semen Retention: Boost Your Health, Focus, and Manifestation</title><link>https://ajulu.netlify.app/posts/the-ultimate-guide-to-semen-retention-boost-your-health-happiness-and-manifestation-power/</link><pubDate>Fri, 24 Feb 2023 14:40:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-ultimate-guide-to-semen-retention-boost-your-health-happiness-and-manifestation-power/</guid><description>&lt;h2 id="the-law-of-attraction-semen-retention"&gt;The Law of Attraction: Semen Retention&lt;/h2&gt;
&lt;p&gt;Semen retention is a practice that has been gaining popularity in recent years, and it is no wonder why. The benefits of semen retention go far beyond the physical realm, extending into the mental, emotional, and spiritual planes. In this article, we will explore the Law of Attraction and how it relates to semen retention. We will delve into the science behind semen retention, the benefits of practicing it, and how it can help you manifest your desires.&lt;/p&gt;</description><content:encoded><![CDATA[<h2 id="the-law-of-attraction-semen-retention">The Law of Attraction: Semen Retention</h2>
<p>Semen retention is a practice that has been gaining popularity in recent years, and it is no wonder why. The benefits of semen retention go far beyond the physical realm, extending into the mental, emotional, and spiritual planes. In this article, we will explore the Law of Attraction and how it relates to semen retention. We will delve into the science behind semen retention, the benefits of practicing it, and how it can help you manifest your desires.</p>
<h3 id="what-is-the-law-of-attraction">What is the Law of Attraction?</h3>
<p>The Law of Attraction is a universal principle that states that like attract like. It is the belief that we create our own reality through our thoughts and emotions. Simply put, what we focus on, we attract into our lives. If we have positive thoughts and emotions, we attract positive experiences and outcomes. Conversely, if we have negative thoughts and emotions, we attract negative experiences and outcomes.</p>
<h3 id="how-does-semen-retention-relate-to-the-law-of-attraction">How does Semen Retention relate to the Law of Attraction?</h3>
<p>Semen retention is a practice that involves abstaining from ejaculation. This can be achieved through a variety of methods, including meditation, yoga, and breathing exercises. The practice is based on the belief that semen is a vital life force energy that, when conserved, can be transmuted into higher forms of energy. When semen is retained, it is believed that its energy is channeled upwards, toward the brain, where it can be used to fuel creativity, productivity, and spiritual growth.</p>
<p>The Law of Attraction and semen retention are interconnected because both involve the management of energy. The Law of Attraction states that our thoughts and emotions are energy and that we can use them to create our reality. Semen retention involves the conservation of sexual energy, which can be used to fuel our thoughts and emotions. By practicing semen retention, we can increase our vibrational frequency, which in turn can attract positive experiences and outcomes.</p>
<h3 id="the-science-behind-semen-retention">The Science behind Semen Retention</h3>
<p>Semen is more than just a liquid that is released during ejaculation. It is a complex mixture of hormones, enzymes, and other compounds that have a profound effect on the body and mind. When semen is retained, it is believed that its energy is transmuted into other forms of energy, such as creative energy and spiritual energy.</p>
<p>There is scientific evidence to support the idea that semen retention can have a positive impact on the body and mind. A study published in the Journal of Sexual Medicine found that men who abstained from ejaculation for seven days had higher levels of testosterone in their bloodstream. Testosterone is a hormone that is associated with increased energy, motivation, and confidence. Another study published in the Archives of Sexual Behavior found that men who abstained from ejaculation for three weeks reported higher levels of subjective well-being.</p>
<h3 id="the-benefits-of-semen-retention">The Benefits of Semen Retention</h3>
<p>The <a href="https://menprovement.com/benefits-of-semen-retention/">benefits of semen retention are numerous</a>, and they extend far beyond the physical realm. Here are just a few of the benefits:</p>
<ol>
<li>Increased Energy and Motivation - When semen is retained, its energy is transmuted into other forms of energy, such as creative energy and spiritual energy. This can lead to increased energy and motivation, which can be used to achieve our goals and manifest our desires.</li>
<li>Improved Mental Clarity - Semen retention is believed to improve mental clarity and focus. When we conserve our sexual energy, it can be channeled toward our thoughts and ideas, allowing us to think more clearly and creatively.</li>
<li>Increased Spiritual Awareness - Semen retention is also believed to increase spiritual awareness. When we conserve our sexual energy, it</li>
</ol>
<p>When we conserve our sexual energy, it helps us to achieve greater success in our personal and professional lives. Semen retention is one of the most powerful practices that can help us to harness this energy and channel it toward achieving our goals.</p>
<p>Semen retention is a practice that involves abstaining from ejaculation for extended periods. This practice is based on the idea that semen contains vital life force energy, which is lost during ejaculation. By retaining semen, we can conserve this energy and use it to enhance our physical, mental, and spiritual well-being.</p>
<p>The Law of Attraction is a powerful force that governs our lives. This law states that we attract what we focus on, whether positive or negative. Semen retention can help us to harness the power of the Law of Attraction by allowing us to focus our energy on our goals and desires.</p>
<p>When we practice semen retention, we become more focused, motivated, and confident. We have more energy, and we are better able to concentrate on the tasks at hand. This increased focus and energy can help us to achieve our goals more quickly and efficiently.</p>
<p>In addition, semen retention can also help us to cultivate a more positive mindset. When we conserve our sexual energy, we become more mindful and present in the moment. We are less likely to be distracted by negative thoughts or emotions and more likely to experience feelings of peace and contentment.</p>
<p>Moreover, semen retention has been shown to have a range of physical and mental health benefits. It can help to boost our immune system, increase our vitality and stamina, and improve our overall well-being. Additionally, it can help to reduce stress and anxiety, improve sleep quality, and enhance our mood.</p>
<p>In conclusion, the practice of semen retention is a powerful tool for enhancing our physical, mental, and spiritual well-being. By conserving our sexual energy, we can tap into the power of the Law of Attraction and achieve greater success in all areas of our lives. If you&rsquo;re interested in exploring this practice further, there are many resources available online that can help you get started.</p>
<h3 id="faqs">FAQs:</h3>
<p>Q: Is semen retention harmful? A: No, semen retention is not harmful. It is a natural practice that has been used for centuries to promote physical, mental, and spiritual well-being.</p>
<p>Q: How long should I practice semen retention? A: The length of time that you practice semen retention can vary depending on your individual goals and preferences. Some people practice semen retention for short periods, while others practice it for longer periods, even up to several months or years.</p>
<p>Q: Will I experience any negative side effects from practicing semen retention? A: Some people may experience mild discomfort or temporary side effects when first starting semen retention, such as increased sexual energy or tension. However, these side effects are generally mild and will subside with time.</p>
<p>Q: Can women practice semen retention? A: While the term &ldquo;semen retention&rdquo; is often used in reference to men, women can also practice semen retention by abstaining from sexual activity or orgasm.</p>
<p>Q: Are there any scientific studies on the benefits of semen retention? A: While there is limited scientific research on the benefits of semen retention, many people who practice this technique report improvements in their physical, mental, and spiritual well-being.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/photo-1617724054780-ef6bd6b21e17.webp" medium="image"/></item><item><title>The Life of Underachieving Men Today</title><link>https://ajulu.netlify.app/posts/the-life-of-underachieving-men-today/</link><pubDate>Fri, 24 Feb 2023 08:43:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-life-of-underachieving-men-today/</guid><description>&lt;p&gt;Have you ever felt like you&amp;rsquo;re not living up to your full potential? Do you struggle with finding motivation and direction in life? If so, you&amp;rsquo;re not alone. In today&amp;rsquo;s fast-paced society, many men struggle with underachievement and the feeling that they&amp;rsquo;re not reaching their goals. In this article, we&amp;rsquo;ll take a closer look at the factors that contribute to underachievement in men and provide practical steps for overcoming these challenges and achieving success.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Have you ever felt like you&rsquo;re not living up to your full potential? Do you struggle with finding motivation and direction in life? If so, you&rsquo;re not alone. In today&rsquo;s fast-paced society, many men struggle with underachievement and the feeling that they&rsquo;re not reaching their goals. In this article, we&rsquo;ll take a closer look at the factors that contribute to underachievement in men and provide practical steps for overcoming these challenges and achieving success.</p>
<p>In today&rsquo;s society, there is a growing concern about the state of underachieving men. These men are often viewed as unmotivated, lazy, and lacking direction in life. Despite the abundance of opportunities available to them, they struggle to achieve their goals and reach their full potential.</p>
<h2 id="the-definition-of-underachieving-men">The Definition of Underachieving Men</h2>
<p>Underachieving men are those who fail to meet their potential, despite possessing the necessary skills, abilities, and resources to do so. They often struggle to find direction in life and may lack the motivation to pursue their goals. These men may be intelligent, but they fail to apply themselves in a way that leads to success. Underachieving men can be found in all walks of life, from students who perform poorly in school to professionals who are unable to advance in their careers.</p>
<h3 id="the-factors-that-contribute-to-underachievement">The Factors That Contribute to Underachievement</h3>
<p>There are many factors that contribute to underachievement in men. One of the most significant factors is a lack of motivation. Underachieving men may lack the drive to pursue their goals, or they may feel overwhelmed by the challenges they face. This lack of motivation can be caused by a variety of factors, including low self-esteem, depression, and anxiety.</p>
<p>Another factor that contributes to underachievement is a lack of direction. Underachieving men may not have a clear sense of what they want to achieve in life, or they may lack the skills and resources necessary to pursue their goals. This lack of direction can lead to a sense of apathy and a lack of motivation.</p>
<h3 id="the-impact-of-modern-society-on-underachieving-men">The Impact of Modern Society on Underachieving Men</h3>
<p>The modern world can be a challenging place for underachieving men. The pace of life is faster than ever before, and there are more distractions and temptations than ever before. Social media, video games, and other forms of entertainment can be major distractions for underachieving men, causing them to lose focus and motivation.</p>
<p>The modern economy can also be challenging for underachieving men. In today&rsquo;s job market, there is a growing demand for skilled workers, and those without the necessary skills and qualifications may struggle to find work. This can lead to a sense of hopelessness and despair, which can further contribute to underachievement.</p>
<h3 id="overcoming-underachievement">Overcoming Underachievement</h3>
<p>Despite the challenges that underachieving men face, it is possible to overcome underachievement and reach one&rsquo;s full potential. One of the keys to overcoming underachievement is to find a sense of purpose and direction in life. This may involve setting goals, developing a plan of action, and seeking the support of others.</p>
<p>Another important factor in overcoming underachievement is to develop the necessary skills and qualifications to succeed. This may involve going back to school, seeking professional development opportunities, or pursuing a mentorship with someone who has achieved success in their field.</p>
<h3 id="actionable-steps">Actionable Steps</h3>
<p>If you&rsquo;re an underachieving man looking to improve yourself and reach your full potential, there are several actionable steps you can take. Here are some solid strategies to consider:</p>
<ol>
<li>Eat a healthy diet that includes protein-rich foods like meat and eggs. These foods can provide the energy and nutrients your body needs to stay focused and productive throughout the day.</li>
<li>Incorporate regular exercise into your routine. Whether it&rsquo;s hitting the gym, going for a run, or doing yoga, exercise can help boost your energy levels, reduce stress, and improve your overall health.</li>
<li>Make a habit of reading at least 10 pages per day. Reading can help expand your knowledge, improve your vocabulary, and stimulate your brain.</li>
<li>Develop a morning routine that sets a positive tone for the day ahead. This could include meditation, stretching, journaling, or simply taking a few moments to reflect on your goals and intentions for the day.</li>
<li>Consider going &ldquo;monk mode&rdquo; for a period of time. This means cutting out distractions like social media, TV, and video games and focusing solely on your personal development and goals.</li>
<li>Don&rsquo;t shy away from menial jobs or tasks. Sometimes, the best way to gain experience and build skills is by starting at the bottom and working your way up.</li>
<li>Set clear goals and create a plan for achieving them. This could involve breaking down larger goals into smaller, more manageable steps and tracking your progress along the way.</li>
<li>Save up. Lump sums are what matters. Don&rsquo;t go buying everything you want but don&rsquo;t need. Be a minimalist until you have lump sums of cash that can be used to buy real estate or other assets.</li>
</ol>
<p>Rember that these will create momentum and compound. Plus looking masculine and lean will help you get a lot of opportunities. Don&rsquo;t use this time to get girls.</p>
<h2 id="conclusion">Conclusion</h2>
<p>In conclusion, underachieving men face many challenges in today&rsquo;s society. These challenges can include a lack of motivation, direction, and the impact of modern society. However, with the right mindset, support, and resources, it is possible to overcome underachievement and reach one&rsquo;s full potential. By taking action and developing a plan of action, underachieving men can achieve success in their personal and professional lives.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/photo-1593075826385-75cdecda064c.webp" medium="image"/></item><item><title>The Future of Daily Tech: Nanotechnology</title><link>https://ajulu.netlify.app/posts/the-future-of-daily-tech-nanotechnology/</link><pubDate>Thu, 16 Feb 2023 09:48:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-future-of-daily-tech-nanotechnology/</guid><description>&lt;p&gt;Nanotechnology is a rapidly evolving field that has the potential to revolutionize the way we live, work and communicate. As the science of engineering and manipulating matter at the nanoscale, nanotechnology is already being used in a wide range of applications, from electronics and computing to medicine and energy.&lt;/p&gt;
&lt;p&gt;In this article, we will explore the current state of nanotechnology, the potential impact it could have on our daily lives, and the challenges that lie ahead.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Nanotechnology is a rapidly evolving field that has the potential to revolutionize the way we live, work and communicate. As the science of engineering and manipulating matter at the nanoscale, nanotechnology is already being used in a wide range of applications, from electronics and computing to medicine and energy.</p>
<p>In this article, we will explore the current state of nanotechnology, the potential impact it could have on our daily lives, and the challenges that lie ahead.</p>
<ol>
<li>Introduction to Nanotechnology</li>
</ol>
<p>Nanotechnology is the science of studying and manipulating matter at the nanoscale, which is typically defined as between 1 and 100 nanometers in size. At this scale, the properties of materials can be very different from those at the macro scale, which allows for the creation of new materials with unique and desirable properties.</p>
<p>The field of nanotechnology encompasses a wide range of disciplines, including physics, chemistry, materials science, and engineering. Researchers in these fields work together to design and create new materials and devices that can be used in a variety of applications.</p>
<ol start="2">
<li>Current Applications of Nanotechnology</li>
</ol>
<p>Nanotechnology is already being used in a wide range of applications. In electronics and computing, for example, nanoscale transistors and memory devices are used to create faster and more efficient computer chips. In medicine, nanoparticles are being used to deliver drugs directly to cancer cells, reducing the side effects of chemotherapy. In energy, nanomaterials are being used to create more efficient solar panels and batteries.</p>
<p>Nanotechnology is also being used in the development of new materials with unique properties. For example, carbon nanotubes are incredibly strong and lightweight, making them ideal for use in applications such as aerospace and automotive engineering.</p>
<ol start="3">
<li>Potential Impact of Nanotechnology on Daily Life</li>
</ol>
<p>As nanotechnology continues to evolve, it has the potential to have a significant impact on our daily lives. In medicine, for example, the use of nanotechnology could lead to more targeted and effective treatments for a range of diseases. In energy, the development of more efficient solar panels and batteries could lead to a more sustainable and environmentally friendly energy system.</p>
<p>Nanotechnology could also have a significant impact on the way we communicate and interact with the world around us. For example, the development of nanosensors could allow us to detect and monitor a wide range of environmental factors, such as air pollution and water quality. This could lead to more effective and targeted efforts to address environmental issues.</p>
<ol start="4">
<li>Challenges and Risks of Nanotechnology</li>
</ol>
<p>Despite the potential benefits of nanotechnology, there are also significant challenges and risks that need to be addressed. One of the biggest challenges is the development of safe and effective nanomaterials. Because the properties of materials at the nanoscale can be very different from those at the macro scale, it is important to ensure that these materials do not pose a risk to human health or the environment.</p>
<p>Another challenge is the potential for misuse or unintended consequences. For example, the development of nanomaterials with unique properties could lead to new forms of warfare or terrorism. It is important to develop appropriate regulations and safeguards to minimize these risks.</p>
<ol start="5">
<li>FAQs</li>
</ol>
<p>Q: What are some examples of nanotechnology in everyday life? A: Some examples of nanotechnology in everyday life include the use of nanomaterials in sunscreen, clothing, and sporting equipment, as well as the use of nanosensors in air quality monitors and water purification systems.</p>
<p>Q: What are some potential risks of nanotechnology? A: Some potential risks of nanotechnology include the development of unsafe or toxic nanomaterials, the potential for misuse or unintended consequences, and the ethical implications of manipulating matter at the nanoscale.</p>
<p>Q: How is nanotechnology being used in medicine?</p>
<p>A: Nanotechnology is being used in medicine in a variety of ways. One example is the use of nanoparticles to deliver drugs directly to cancer cells. This approach can improve the effectiveness of chemotherapy while reducing side effects.</p>
<p>Nanotechnology is also being used to create new diagnostic tools. For example, researchers are developing nanosensors that can detect specific biomarkers in the body, which could lead to earlier and more accurate diagnoses of diseases.</p>
<p>In addition, nanotechnology is being used to create new materials for medical devices. For example, researchers are developing nanomaterials that can be used to create artificial joints and other implants that are more durable and effective than traditional materials.</p>
<p>Q: What are some of the ethical considerations around nanotechnology? A: One of the main ethical considerations around nanotechnology is the potential for unintended consequences. Because the properties of materials at the nanoscale can be very different from those at the macro scale, it is important to consider the long-term effects of using these materials.</p>
<p>Another ethical consideration is the potential for nanotechnology to exacerbate existing social and economic inequalities. For example, the development of new materials and devices could be expensive and inaccessible to certain groups, leading to greater disparities in healthcare and other areas.</p>
<p>Q: How is nanotechnology being used in energy? A: Nanotechnology is being used in energy in a variety of ways. One example is the use of nanomaterials in solar panels, which can improve their efficiency and reduce their cost. Nanotechnology is also being used to create more efficient batteries, which could help to store and distribute renewable energy more effectively.</p>
<ol start="6">
<li>Conclusion</li>
</ol>
<p>Nanotechnology is a rapidly evolving field that has the potential to have a significant impact on our daily lives. From electronics and computing to medicine and energy, nanotechnology is already being used in a wide range of applications, and the possibilities for future innovations are vast.</p>
<p>However, there are also significant challenges and risks associated with nanotechnology, including the development of safe and effective nanomaterials, the potential for misuse or unintended consequences, and the ethical implications of manipulating matter at the nanoscale.</p>
<p>As we continue to explore the possibilities of nanotechnology, it is important to proceed with caution and to consider the potential long-term effects of these new technologies. By doing so, we can ensure that nanotechnology is used to improve our lives in a safe and responsible manner.</p>
<p>Tags: nanotechnology, daily tech, future tech, medicine, energy, electronics, computing, nanomaterials, innovation, ethical implications, technology, science, research</p>
<p>Hashtags: #nanotechnology #dailytech #futuretech #medicine #energy #electronics #computing #nanomaterials #innovation #technology #science #research #ethics</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/1_aszy222oub_qfhn_eqvnyw.webp" medium="image"/></item><item><title>The Future of Daily Tech: Augmented Reality</title><link>https://ajulu.netlify.app/posts/the-future-of-daily-tech-augmented-reality/</link><pubDate>Wed, 15 Feb 2023 15:41:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-future-of-daily-tech-augmented-reality/</guid><description>&lt;p&gt;Augmented reality (AR) has been a buzzword in the tech industry for years, but it&amp;rsquo;s only now that it&amp;rsquo;s starting to live up to the hype. AR has the potential to transform the way we live, work, and play. In this article, we&amp;rsquo;ll explore what AR is, how it works, and the potential it has to change the world around us. We&amp;rsquo;ll also look at some of the latest developments in AR technology and how they could impact our daily lives in the future.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Augmented reality (AR) has been a buzzword in the tech industry for years, but it&rsquo;s only now that it&rsquo;s starting to live up to the hype. AR has the potential to transform the way we live, work, and play. In this article, we&rsquo;ll explore what AR is, how it works, and the potential it has to change the world around us. We&rsquo;ll also look at some of the latest developments in AR technology and how they could impact our daily lives in the future.</p>
<h2 id="what-is-augmented-reality">What is Augmented Reality?</h2>
<p>AR is a technology that overlays digital information onto the real world. It differs from virtual reality (VR) in that it doesn&rsquo;t create a completely immersive environment. Instead, it enhances the real world by adding digital information to it. This information can be anything from text and images to videos and 3D models.</p>
<p>AR works by using a combination of cameras, sensors, and software to detect the real world and overlay digital information onto it. The user can then see the real world and the digital information at the same time, creating a seamless blend of the two.</p>
<h3 id="how-does-augmented-reality-work">How does Augmented Reality work?</h3>
<p>AR technology relies on a few key components to work. The first is a device with a camera, such as a smartphone or a tablet. The camera captures the real world, which is then analyzed by software to identify and track specific objects and features.</p>
<p>The software then overlays digital information onto the real world using a technique called rendering. This involves creating a 3D model of the digital information and then superimposing it onto the real-world environment.</p>
<p>AR also relies on sensors, such as gyroscopes and accelerometers, to track the movement of the device and adjust the position of the digital information accordingly. This allows the user to move around and interact with the AR experience in a natural way.</p>
<h3 id="potential-applications-of-augmented-reality">Potential Applications of Augmented Reality</h3>
<p>AR has the potential to revolutionize many industries, from gaming and entertainment to healthcare and education. Here are just a few examples of the many applications of AR technology:</p>
<ol>
<li>Retail: AR can be used to enhance the shopping experience by allowing customers to try on clothes and see how they look without physically trying them on.</li>
<li>Education: AR can be used to create immersive learning experiences that make it easier for students to understand complex concepts.</li>
<li>Healthcare: AR can be used to train medical professionals and provide them with real-time information during surgeries and other procedures.</li>
<li>Architecture and Design: AR can be used to create 3D models of buildings and other structures, allowing architects and designers to see how their designs will look in the real world.</li>
<li>Tourism: AR can be used to provide visitors with interactive guides to historical sites and other tourist attractions.</li>
</ol>
<h3 id="latest-developments-in-augmented-reality">Latest Developments in Augmented Reality</h3>
<p>AR technology is constantly evolving, and there have been many exciting developments in recent years. Here are a few of the latest advancements in AR technology:</p>
<ol>
<li>Apple ARKit: Apple&rsquo;s ARKit is a software development kit that allows developers to create AR experiences for iOS devices.</li>
<li>Google ARCore: Google&rsquo;s ARCore is a similar development kit for Android devices.</li>
<li>Microsoft HoloLens: The HoloLens is a headset that uses AR technology to create immersive experiences for users.</li>
<li>Magic Leap: Magic Leap is a company that has developed a headset that uses AR to create realistic, interactive experiences.</li>
<li>Snapchat Filters: Snapchat&rsquo;s popular filters use AR technology to add fun effects and animations to photos and videos.</li>
</ol>
<h3 id="faqs">FAQs</h3>
<p>Q: Is augmented reality the same as virtual reality? A: No, they are different technologies. Virtual reality creates a completely immersive environment, while augmented reality overlays digital information onto the real world.</p>
<p>Q: What devices support augmented reality? A: Many smartphones and tablets now support augmented reality, including the latest iPhones and Android devices.</p>
<p>Q: What are some of the challenges with augmented reality? A: One of the biggest challenges is creating accurate and stable tracking of the real world. This requires sophisticated software and hardware that can detect and track objects in real-time. Another challenge is creating compelling and useful AR experiences that users will want to engage with.</p>
<p>Q: How is augmented reality different from mixed reality? A: Mixed reality is a hybrid of augmented and virtual reality that allows digital objects to interact with the real world. This means that digital objects can appear to interact with physical objects in real-time, creating a more immersive experience.</p>
<p>Q: What are some of the ethical concerns around augmented reality? A: One concern is the potential for AR to be used to invade people&rsquo;s privacy, such as by overlaying personal information onto the real world. There is also a concern that AR could be used to create misleading or manipulative content, such as deep fakes or fake news.</p>
<h2 id="conclusion">Conclusion</h2>
<p>Augmented reality has the potential to revolutionize the way we live, work, and play. It offers a new way to experience the world around us and has many practical applications in industries ranging from retail to healthcare. As AR technology continues to evolve, we can expect to see even more exciting developments and new use cases emerge. With the increasing prevalence of AR-enabled devices, it&rsquo;s clear that this technology is here to stay. The future of daily tech is undoubtedly augmented reality, and we can&rsquo;t wait to see what the future holds.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/adobestock_305628750-scaled.webp" medium="image"/></item><item><title>The Future of Daily Tech: Wireless Charging</title><link>https://ajulu.netlify.app/posts/the-future-of-daily-tech-wireless-charging/</link><pubDate>Thu, 09 Feb 2023 00:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-future-of-daily-tech-wireless-charging/</guid><description>&lt;p&gt;The world of technology is constantly evolving and advancing, and the way we charge our devices is no exception. The traditional method of charging, which involves plugging a cable into an outlet and connecting it to our device, is becoming outdated. The future of daily tech is wireless and contactless, and it is rapidly changing the way we power our devices. In this article, we will discuss the advancements in wireless charging technology and how it is transforming the way we live and work.&lt;/p&gt;</description><content:encoded><![CDATA[<p>The world of technology is constantly evolving and advancing, and the way we charge our devices is no exception. The traditional method of charging, which involves plugging a cable into an outlet and connecting it to our device, is becoming outdated. The future of daily tech is wireless and contactless, and it is rapidly changing the way we power our devices. In this article, we will discuss the advancements in wireless charging technology and how it is transforming the way we live and work.</p>
<h2 id="what-is-wireless-contactless-charging">What is Wireless Contactless Charging?</h2>
<p>Wireless contactless charging refers to the ability to charge your device without the need for any cables or cords. Instead, you simply place your device on a charging pad or a similar device and it begins to charge wirelessly. This method of charging is both convenient and efficient, as it eliminates the need for cords and allows you to charge multiple devices at once.</p>
<h2 id="how-does-wireless-contactless-charging-work">How Does Wireless Contactless Charging Work?</h2>
<p>Wireless contactless charging works by utilizing electromagnetic induction. This involves the transfer of energy from the charging pad to the device, through the use of an electromagnetic field. When the device is placed on the charging pad, an electromagnetic field is created, which induces a current in the device. This current is then used to charge the battery.</p>
<h2 id="advantages-of-wireless-contactless-charging">Advantages of Wireless Contactless Charging</h2>
<p>There are several benefits to using wireless contactless charging. Firstly, it eliminates the need for cords, making it much more convenient to charge your devices. Secondly, it is more efficient, as it allows you to charge multiple devices at once. Additionally, wireless contactless charging is safer, as there is no risk of electrical shock or fire, as there is no direct connection between the device and the power source.</p>
<h2 id="the-future-of-wireless-contactless-charging">The Future of Wireless Contactless Charging</h2>
<p>The future of wireless contactless charging is looking bright. Advances in technology are leading to the development of new and improved methods of wireless charging, making it faster and more efficient. Additionally, the integration of wireless charging into everyday devices such as smartphones, laptops, and even cars is making it more accessible and convenient for consumers.</p>
<h2 id="current-limitations-of-wireless-contactless-charging">Current Limitations of Wireless Contactless Charging</h2>
<p>Despite the many advantages of wireless contactless charging, there are still some limitations. Currently, the range of wireless charging is limited, meaning that devices need to be in close proximity to the charging pad in order to charge. Additionally, the speed of charging can be slower compared to traditional charging methods.</p>
<h2 id="overcoming-the-limitations-of-wireless-contactless-charging">Overcoming the Limitations of Wireless Contactless Charging</h2>
<p>Research and development are ongoing in the field of wireless contactless charging, and new solutions are being developed to overcome the current limitations. For example, advances in technology are allowing for the development of longer-range charging, meaning that devices will be able to charge from a greater distance. Additionally, new charging methods are being developed that are faster and more efficient, allowing for faster charging times.</p>
<h2 id="conclusion">Conclusion</h2>
<p>In conclusion, the future of daily tech is wireless and contactless, and wireless contactless charging is rapidly changing the way we live and work. With its many advantages, including convenience and efficiency, it is set to become the standard method of charging for devices in the near future. Despite some limitations, advancements in technology are being made to overcome these limitations, making wireless contactless charging an exciting and promising technology for the future.</p>
<h2 id="faqs">FAQs</h2>
<ol>
<li>What is wireless contactless charging?</li>
</ol>
<p>Wireless contactless charging refers to the ability to charge your device without the need for any cables or cords. You simply place your device on a charging pad and it begins to charge wirelessly.</p>
<ol start="2">
<li>How does wireless contactless charging work?</li>
</ol>
<p>Wireless contactless charging works through the use of electromagnetic induction, where energy is transferred from the charging pad to the device through an electromagnetic field. When the device is placed on the charging pad, a current is induced in the device, which is then used to charge the battery.</p>
<ol start="3">
<li>What are the benefits of using wireless contactless charging?</li>
</ol>
<p>The benefits of using wireless contactless charging include convenience, as there is no need for cords, and efficiency, as multiple devices can be charged at once. It is also safer as there is no direct connection between the device and the power source.</p>
<ol start="4">
<li>What are the current limitations of wireless contactless charging?</li>
</ol>
<p>The current limitations of wireless contactless charging include a limited range, meaning devices need to be in close proximity to the charging pad, and slower charging times compared to traditional charging methods.</p>
<ol start="5">
<li>How is technology overcoming the limitations of wireless contactless charging?</li>
</ol>
<p>Research and development are ongoing in the field of wireless contactless charging, and new solutions are being developed to overcome the current limitations. Advances in technology are allowing for the development of longer-range charging and faster charging methods.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/wireless-charging.webp" medium="image"/></item><item><title>The Future of Daily Tech: Holograms</title><link>https://ajulu.netlify.app/posts/the-future-of-daily-tech-holograms/</link><pubDate>Thu, 02 Feb 2023 10:33:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-future-of-daily-tech-holograms/</guid><description>&lt;p&gt;Technology is constantly evolving, and with each passing day, it seems like there is a new and exciting advancement that is just around the corner. One of the most talked-about technological advancements in recent years has been the development of holograms, and how they could change the way we interact with technology in our daily lives. In this article, we will be taking a closer look at what holograms are, how they work, and the potential impact they could have on the future of daily tech.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Technology is constantly evolving, and with each passing day, it seems like there is a new and exciting advancement that is just around the corner. One of the most talked-about technological advancements in recent years has been the development of holograms, and how they could change the way we interact with technology in our daily lives. In this article, we will be taking a closer look at what holograms are, how they work, and the potential impact they could have on the future of daily tech.</p>
<h2 id="what-are-holograms">What are Holograms?</h2>
<p>A hologram is a three-dimensional image created with the use of laser technology. Unlike traditional images, which are flat and two-dimensional, holograms offer a much more immersive and interactive experience, as they can be viewed from multiple angles and appear to be three-dimensional. Holograms are created by shining laser light through a series of lenses and mirrors, which then projects the image into space, creating the illusion of a three-dimensional object.</p>
<h2 id="how-do-holograms-work">How do Holograms Work?</h2>
<p>Holograms work by using the principles of light and optics to create the illusion of a three-dimensional image. The laser light used to create a hologram is split into two beams - the reference beam and the object beam. The reference beam is used to project the image onto a holographic film, while the object beam is used to capture the image of the object being holographed. When the two beams meet, they interfere with each other and create an interference pattern that is recorded onto the holographic film. When the film is illuminated with laser light, the recorded interference pattern creates the illusion of a three-dimensional image.</p>
<h2 id="the-potential-impact-of-holograms-on-daily-tech">The Potential Impact of Holograms on Daily Tech</h2>
<p>Holograms have the potential to revolutionize the way we interact with technology in our daily lives. For example, holographic displays could be used to create virtual assistants that could help us with tasks such as scheduling, reminders, and even shopping. In the field of entertainment, holograms could be used to create more immersive and interactive experiences, such as virtual concerts or gaming. Additionally, holograms could be used in a variety of industries, such as healthcare, education, and military training, to create more interactive and engaging experiences.</p>
<h2 id="holograms-in-healthcare">Holograms in Healthcare</h2>
<p>Holograms have the potential to revolutionize the way healthcare is delivered, by allowing doctors and medical professionals to view three-dimensional images of the human body in real time. This could greatly improve the accuracy of diagnoses and treatments, as well as provide a more immersive and interactive experience for both the patient and the medical professional. Holograms could also be used to create virtual surgeries, allowing medical professionals to practice procedures before performing them on real patients.</p>
<h2 id="holograms-in-education">Holograms in Education</h2>
<p>Holograms have the potential to revolutionize the way education is delivered, by allowing students to interact with three-dimensional images in real time. This could greatly improve the learning experience, as students could see and interact with images in a way that is not possible with traditional two-dimensional images. Holograms could also be used to create virtual classrooms, allowing students to attend classes from anywhere in the world, without having to be physically present in a traditional classroom setting.</p>
<h2 id="holograms-in-military-training">Holograms in Military Training</h2>
<p>Holograms have the potential to revolutionize the way military training is delivered, by allowing soldiers to interact with three-dimensional images in real time. This could greatly improve the accuracy of training, as soldiers could see and interact with images in a way that is not possible with traditional two-dimensional images.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/new-technology-makes-real-time-3d-holograms-reality.webp" medium="image"/></item><item><title>Developing for the Web 3: The Basics</title><link>https://ajulu.netlify.app/posts/developing-for-the-web-3-the-basics/</link><pubDate>Fri, 27 Jan 2023 19:24:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/developing-for-the-web-3-the-basics/</guid><description>&lt;p&gt;Web 3, also known as the decentralized web, is the next iteration of the internet, enabled by blockchain technology. Unlike the traditional web, where data and applications are controlled by a centralized authority, Web 3 allows for the creation of decentralized networks and applications (dApps). This new decentralized infrastructure allows for greater security, transparency, and autonomy in the digital world.&lt;/p&gt;
&lt;h2 id="understanding-the-web-3-ecosystem"&gt;Understanding the Web 3 Ecosystem:&lt;/h2&gt;
&lt;p&gt;The Web 3 ecosystem is built on decentralized networks, such as Ethereum, which enable the creation of smart contracts. Smart contracts are self-executing contracts with the terms of the agreement written directly into lines of code. These contracts can be used to automate various processes, from supply chain management to financial transactions. Additionally, the Web 3 ecosystem also includes decentralized storage solutions, such as InterPlanetary File System (IPFS), which allow for the decentralized storage of data.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Web 3, also known as the decentralized web, is the next iteration of the internet, enabled by blockchain technology. Unlike the traditional web, where data and applications are controlled by a centralized authority, Web 3 allows for the creation of decentralized networks and applications (dApps). This new decentralized infrastructure allows for greater security, transparency, and autonomy in the digital world.</p>
<h2 id="understanding-the-web-3-ecosystem">Understanding the Web 3 Ecosystem:</h2>
<p>The Web 3 ecosystem is built on decentralized networks, such as Ethereum, which enable the creation of smart contracts. Smart contracts are self-executing contracts with the terms of the agreement written directly into lines of code. These contracts can be used to automate various processes, from supply chain management to financial transactions. Additionally, the Web 3 ecosystem also includes decentralized storage solutions, such as InterPlanetary File System (IPFS), which allow for the decentralized storage of data.</p>
<h2 id="developing-for-the-web-3">Developing for the Web 3:</h2>
<p>To develop for Web 3, one must have a good understanding of blockchain technology and its underlying protocols. Popular protocols in the Web 3 space include Ethereum, EOS, and TRON. Developers also use various tools such as Solidity (the programming language for Ethereum) and Truffle (a development environment for Ethereum). Additionally, there are various platforms such as OpenZeppelin and Gnosis that provide pre-built smart contract templates and libraries for developers to use.</p>
<h2 id="web-3-use-cases">Web 3 Use Cases:</h2>
<p>Web 3 technology is already being used in various industries, from finance to gaming. In finance, decentralized finance (DeFi) platforms are being built on Web 3, allowing for peer-to-peer financial transactions without the need for intermediaries.</p>
<p>In gaming, dApps are being created that allow players to own and trade in-game assets, creating a new form of gaming economy. In addition to these examples, Web 3 also has potential in industries such as supply chain management, real estate, and voting systems.</p>
<p>Conclusion: Web 3 represents a significant shift in the way we interact with technology and the digital world. The decentralized infrastructure of Web 3 allows for greater security, transparency, and autonomy. As the technology continues to evolve, we are likely to see an increasing number of dApps and decentralized networks built on the Web 3. With the potential to revolutionize various industries, it is important to stay informed about the developments in the Web 3 space.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/shutterstock_2021164787.webp" medium="image"/></item><item><title>Unlocking the Potential of Superhuman Intelligence with Neuralink and ChatGPT</title><link>https://ajulu.netlify.app/posts/unlocking-the-potential-of-superhuman-intelligence-with-neuralink-and-chatgpt-this-could-change-the-world/</link><pubDate>Fri, 27 Jan 2023 10:52:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/unlocking-the-potential-of-superhuman-intelligence-with-neuralink-and-chatgpt-this-could-change-the-world/</guid><description>&lt;p&gt;Two state-of-the-art technologies, Neuralink and ChatGPT, hold the potential to transform human intelligence. Neuralink, created by Elon Musk&amp;rsquo;s team, is a brain-computer interface allowing direct brain-computer communication. ChatGPT, developed by OpenAI, is a high-powered language model capable of natural language understanding and response. Together, these technologies could boost human intelligence in unprecedented ways.&lt;/p&gt;
&lt;h2 id="combining-neuralink-and-chatgpt"&gt;Combining Neuralink and ChatGPT:&lt;/h2&gt;
&lt;p&gt;By bringing Neuralink and ChatGPT together, a world of possibilities opens up. A brain-computer interface enables us to unlock the brain&amp;rsquo;s potential, boosting cognitive abilities such as memory, focus, and creativity. With AI-powered communication, this enhanced intelligence can be easily shared and accessed. This could lead to swift, accurate problem solving and decision making.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Two state-of-the-art technologies, Neuralink and ChatGPT, hold the potential to transform human intelligence. Neuralink, created by Elon Musk&rsquo;s team, is a brain-computer interface allowing direct brain-computer communication. ChatGPT, developed by OpenAI, is a high-powered language model capable of natural language understanding and response. Together, these technologies could boost human intelligence in unprecedented ways.</p>
<h2 id="combining-neuralink-and-chatgpt">Combining Neuralink and ChatGPT:</h2>
<p>By bringing Neuralink and ChatGPT together, a world of possibilities opens up. A brain-computer interface enables us to unlock the brain&rsquo;s potential, boosting cognitive abilities such as memory, focus, and creativity. With AI-powered communication, this enhanced intelligence can be easily shared and accessed. This could lead to swift, accurate problem solving and decision making.</p>
<h2 id="boosting-human-intelligence">Boosting Human Intelligence:</h2>
<p>Direct brain-computer communication for data access and real-time complex calculations.
Improved memory and recall by tapping into the brain&rsquo;s memory systems.
Enhanced focus and attention through direct brain activity influence.
Elevated creativity and problem-solving by accessing the brain&rsquo;s centers.</p>
<h2 id="challenges-and-ethics">Challenges and Ethics:</h2>
<p>The development of superhuman intelligence presents both benefits and challenges. Issues such as potential misuse, inequality, and impact on human identity and autonomy need to be considered. It&rsquo;s vital for society to have informed discussions and for researchers and developers to approach development and implementation ethically.</p>
<h2 id="conclusion-and-future">Conclusion and Future:</h2>
<p>The combination of Neuralink and ChatGPT has the power to enhance human intelligence significantly. Although challenges and ethical considerations must be addressed, the benefits are worth exploring. As these technologies advance, it&rsquo;s crucial to keep open dialogue about their implications and ensure responsible usage. The future of human intelligence is vast, and we&rsquo;ve only just started to uncover its potential.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/my-project-1-11.webp" medium="image"/></item><item><title>Efficiency Unleashed - The Top 20 Mobile Apps and Web Tools for Freelancers</title><link>https://ajulu.netlify.app/posts/efficiency-unleashed-the-top-20-mobile-apps-and-web-tools-for-freelancers-consultants-and-entrepreneurs/</link><pubDate>Wed, 25 Jan 2023 18:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/efficiency-unleashed-the-top-20-mobile-apps-and-web-tools-for-freelancers-consultants-and-entrepreneurs/</guid><description>&lt;p&gt;Freelancers, consultants, and entrepreneurs often need to stay organized and manage their time effectively in order to succeed in their businesses. Fortunately, there are many mobile apps and web tools available to help them do just that. Here are a few popular options:&lt;/p&gt;
&lt;h2 id="mobile-apps"&gt;Mobile apps&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://trello.com/"&gt;&lt;strong&gt;Trello&lt;/strong&gt;&lt;/a&gt; - A project management app that allows users to organize their tasks and projects into boards and cards. It&amp;rsquo;s a great way to visualize progress and stay on top of deadlines.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://evernote.com/"&gt;&lt;strong&gt;Evernote&lt;/strong&gt;&lt;/a&gt; - A note-taking app that allows users to create notes, organize them into notebooks, and access them from any device. It&amp;rsquo;s perfect for keeping track of ideas and to-do lists.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://slack.com/"&gt;&lt;strong&gt;Slack&lt;/strong&gt;&lt;/a&gt; - A communication app that allows users to create channels for specific projects or topics, as well as direct messaging. It&amp;rsquo;s a great way for freelancers to stay in touch with clients and collaborators.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dropbox.com/"&gt;&lt;strong&gt;Dropbox&lt;/strong&gt;&lt;/a&gt; - A cloud storage service that allows users to store and share files with others. It&amp;rsquo;s a great way to keep all of your documents and files organized and accessible from any device.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://toggl.com/"&gt;&lt;strong&gt;Toggl&lt;/strong&gt;&lt;/a&gt; - A time-tracking app that allows users to track the time they spend on different tasks and projects. It&amp;rsquo;s a great way to stay on top of billable hours and ensure that you&amp;rsquo;re accurately billing your clients.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://todoist.com/"&gt;&lt;strong&gt;Todoist&lt;/strong&gt;&lt;/a&gt; - A task management app that helps users stay on top of their to-do lists and keep their tasks organized. It offers a variety of features, including the ability to set due dates and reminders, and the ability to collaborate with others.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hootsuite.com/"&gt;&lt;strong&gt;Hootsuite&lt;/strong&gt;&lt;/a&gt; - A social media management app that allows users to schedule and publish social media posts, track analytics, and engage with followers. It&amp;rsquo;s a great way to stay on top of social media marketing for businesses.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://calendar.com/"&gt;&lt;strong&gt;Calendar&lt;/strong&gt;&lt;/a&gt; - A calendar app that helps users manage their schedule, set reminders, and share calendars with others. It offers a variety of features, including the ability to schedule recurring events, and the ability to view multiple calendars at once.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.expensify.com/"&gt;&lt;strong&gt;Expensify&lt;/strong&gt;&lt;/a&gt; - A expense tracking app that allows users to keep track of their expenses, create reports, and manage their finances. It&amp;rsquo;s a great tool for freelancers, consultants, and entrepreneurs to manage their finances on the go.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.mileiq.com/"&gt;&lt;strong&gt;MileIQ&lt;/strong&gt;&lt;/a&gt; - A mileage tracking app that helps users track the miles they drive for business purposes, and automatically creates reports for tax purposes.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://getpocket.com/"&gt;&lt;strong&gt;Pocket&lt;/strong&gt;&lt;/a&gt; - A read-it-later app that allows users to save articles, videos, and other content for later viewing. It&amp;rsquo;s a great way to save and organize content for later use in business.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://buffer.com/"&gt;&lt;strong&gt;Buffer&lt;/strong&gt;&lt;/a&gt; - A social media management app that allows users to schedule and publish social media posts, track analytics, and engage with followers. It&amp;rsquo;s a great tool for businesses to manage their social media presence and grow their audience.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.pocketcasts.com/"&gt;&lt;strong&gt;Pocket Casts&lt;/strong&gt;&lt;/a&gt; - A podcast player app that allows users to listen to and manage their podcast subscriptions. It&amp;rsquo;s a great way to stay up to date on industry news and trends.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mindnode.com/"&gt;&lt;strong&gt;MindNode&lt;/strong&gt;&lt;/a&gt; - A mind mapping app that allows users to visually organize their ideas and thoughts. It&amp;rsquo;s a great tool for brainstorming and creating outlines for projects.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.camscanner.com/"&gt;&lt;strong&gt;CamScanner&lt;/strong&gt;&lt;/a&gt; - A document scanning app that allows users to scan documents, receipts, and other paper documents with their mobile device&amp;rsquo;s camera. It&amp;rsquo;s a great tool for freelancers, consultants, and entrepreneurs on the go.&lt;/li&gt;
&lt;li&gt;Bonuses: &lt;strong&gt;Adobe Express&lt;/strong&gt;, &lt;strong&gt;Google Analytics&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="web-tools"&gt;Web tools&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://asana.com/"&gt;&lt;strong&gt;Asana&lt;/strong&gt;&lt;/a&gt; - A project management tool that allows users to create tasks, assign them to team members and track progress. It&amp;rsquo;s a great way to keep track of team progress and collaborate with others.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://gsuite.google.com/"&gt;&lt;strong&gt;G Suite&lt;/strong&gt;&lt;/a&gt; - A suite of web-based tools from Google, including Gmail, Google Docs, and Google Drive. These tools are great for collaboration, document creation, and storage.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zoom.us/"&gt;&lt;strong&gt;Zoom&lt;/strong&gt;&lt;/a&gt; - A video conferencing tool that allows users to host and join meetings, webinars, and video calls. It&amp;rsquo;s a great way to stay in touch with clients and team members remotely.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://paypal.com/"&gt;&lt;strong&gt;PayPal&lt;/strong&gt;&lt;/a&gt; - An online payment platform that allows users to send and receive money, as well as create invoices. It&amp;rsquo;s a great way to handle transactions with clients and customers.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://canva.com/"&gt;&lt;strong&gt;Canva&lt;/strong&gt;&lt;/a&gt; - A graphic design tool that allows users to create professional-looking graphics, even without design experience. It&amp;rsquo;s a great way to create social media graphics, flyers, and other marketing materials.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.hubspot.com/"&gt;&lt;strong&gt;Hubspot&lt;/strong&gt;&lt;/a&gt; - A marketing, sales, and service platform that allows businesses to attract, engage, and delight customers. It offers a variety of features, including marketing automation, lead management, and customer service tools.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mailchimp.com/"&gt;&lt;strong&gt;Mailchimp&lt;/strong&gt;&lt;/a&gt; - An email marketing platform that allows users to create and send email campaigns, manage subscriber lists and track results. It&amp;rsquo;s a great tool for businesses to engage with their customers and grow their audience.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/"&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/a&gt; - A web-based platform for version control and collaboration that allows users to store, share, and collaborate on code and other files. It&amp;rsquo;s a great tool for software developers, but can also be used by other businesses for version control and collaboration.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.surveymonkey.com/"&gt;&lt;strong&gt;SurveyMonkey&lt;/strong&gt;&lt;/a&gt; - A survey tool that allows users to create, send, and analyze surveys. It&amp;rsquo;s a great tool for businesses to gather customer feedback and research market trends.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://hootsuite.com/insights"&gt;&lt;strong&gt;Hootsuite Insights&lt;/strong&gt;&lt;/a&gt; - A social media listening tool that allows businesses to track mentions and sentiments of their brand and competitors across social media platforms. It&amp;rsquo;s a great tool for businesses to monitor their online presence and gain insights into customer sentiment.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://buffer.com/analyze"&gt;&lt;strong&gt;Buffer Analyze&lt;/strong&gt;&lt;/a&gt; - A social media analytics tool that provides businesses with in-depth insights into their social media performance and audience engagement. It&amp;rsquo;s a great tool for businesses to track the success of their social media campaigns and make data-driven decisions.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://airtable.com/"&gt;&lt;strong&gt;Airtable&lt;/strong&gt;&lt;/a&gt; - A web-based database tool that allows businesses to create and manage databases and collaborate with team members. It&amp;rsquo;s a great tool for businesses to organize and manage their data in a user-friendly way.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.canva.com/pro/"&gt;&lt;strong&gt;Canva Pro&lt;/strong&gt;&lt;/a&gt; - A graphic design tool that provides businesses with advanced features such as unlimited storage, access to millions of stock images, and priority support. It&amp;rsquo;s a great tool for businesses to create professional graphics and improve their marketing materials.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.upwork.com/"&gt;&lt;strong&gt;Upwork&lt;/strong&gt;&lt;/a&gt; - A freelance marketplace that connects businesses with top talent for various projects and tasks. It&amp;rsquo;s a great tool for businesses to find and hire freelancers for specific projects or tasks.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zapier.com/"&gt;&lt;strong&gt;Zapier&lt;/strong&gt;&lt;/a&gt; - An automation tool that allows businesses to connect and automate different web apps, such as Trello, Slack, Gmail, and more. It&amp;rsquo;s a great tool for businesses to streamline their workflow and automate repetitive tasks.&lt;/li&gt;
&lt;li&gt;Bonuses: &lt;a href="http://clickfunnels.com/"&gt;&lt;strong&gt;ClickFunnels&lt;/strong&gt;&lt;/a&gt;, &lt;a href="https://www.docusign.com/"&gt;&lt;strong&gt;DocuSign&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;While this is not an extensive list, it gives a good overview of the available tools for freelancers, consultants, and entrepreneurs to help them stay organized and manage their time effectively. It&amp;rsquo;s also worth noting that many of these apps and tools offer a free version, allowing users to try them out before committing to a paid plan.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Freelancers, consultants, and entrepreneurs often need to stay organized and manage their time effectively in order to succeed in their businesses. Fortunately, there are many mobile apps and web tools available to help them do just that. Here are a few popular options:</p>
<h2 id="mobile-apps">Mobile apps</h2>
<ul>
<li><a href="https://trello.com/"><strong>Trello</strong></a> - A project management app that allows users to organize their tasks and projects into boards and cards. It&rsquo;s a great way to visualize progress and stay on top of deadlines.</li>
<li><a href="https://evernote.com/"><strong>Evernote</strong></a> - A note-taking app that allows users to create notes, organize them into notebooks, and access them from any device. It&rsquo;s perfect for keeping track of ideas and to-do lists.</li>
<li><a href="https://slack.com/"><strong>Slack</strong></a> - A communication app that allows users to create channels for specific projects or topics, as well as direct messaging. It&rsquo;s a great way for freelancers to stay in touch with clients and collaborators.</li>
<li><a href="https://dropbox.com/"><strong>Dropbox</strong></a> - A cloud storage service that allows users to store and share files with others. It&rsquo;s a great way to keep all of your documents and files organized and accessible from any device.</li>
<li><a href="https://toggl.com/"><strong>Toggl</strong></a> - A time-tracking app that allows users to track the time they spend on different tasks and projects. It&rsquo;s a great way to stay on top of billable hours and ensure that you&rsquo;re accurately billing your clients.</li>
<li><a href="https://todoist.com/"><strong>Todoist</strong></a> - A task management app that helps users stay on top of their to-do lists and keep their tasks organized. It offers a variety of features, including the ability to set due dates and reminders, and the ability to collaborate with others.</li>
<li><a href="https://hootsuite.com/"><strong>Hootsuite</strong></a> - A social media management app that allows users to schedule and publish social media posts, track analytics, and engage with followers. It&rsquo;s a great way to stay on top of social media marketing for businesses.</li>
<li><a href="https://calendar.com/"><strong>Calendar</strong></a> - A calendar app that helps users manage their schedule, set reminders, and share calendars with others. It offers a variety of features, including the ability to schedule recurring events, and the ability to view multiple calendars at once.</li>
<li><a href="https://www.expensify.com/"><strong>Expensify</strong></a> - A expense tracking app that allows users to keep track of their expenses, create reports, and manage their finances. It&rsquo;s a great tool for freelancers, consultants, and entrepreneurs to manage their finances on the go.</li>
<li><a href="https://www.mileiq.com/"><strong>MileIQ</strong></a> - A mileage tracking app that helps users track the miles they drive for business purposes, and automatically creates reports for tax purposes.</li>
<li><a href="https://getpocket.com/"><strong>Pocket</strong></a> - A read-it-later app that allows users to save articles, videos, and other content for later viewing. It&rsquo;s a great way to save and organize content for later use in business.</li>
<li><a href="https://buffer.com/"><strong>Buffer</strong></a> - A social media management app that allows users to schedule and publish social media posts, track analytics, and engage with followers. It&rsquo;s a great tool for businesses to manage their social media presence and grow their audience.</li>
<li><a href="https://www.pocketcasts.com/"><strong>Pocket Casts</strong></a> - A podcast player app that allows users to listen to and manage their podcast subscriptions. It&rsquo;s a great way to stay up to date on industry news and trends.</li>
<li><a href="https://mindnode.com/"><strong>MindNode</strong></a> - A mind mapping app that allows users to visually organize their ideas and thoughts. It&rsquo;s a great tool for brainstorming and creating outlines for projects.</li>
<li><a href="https://www.camscanner.com/"><strong>CamScanner</strong></a> - A document scanning app that allows users to scan documents, receipts, and other paper documents with their mobile device&rsquo;s camera. It&rsquo;s a great tool for freelancers, consultants, and entrepreneurs on the go.</li>
<li>Bonuses: <strong>Adobe Express</strong>, <strong>Google Analytics</strong></li>
</ul>
<h2 id="web-tools">Web tools</h2>
<ul>
<li><a href="https://asana.com/"><strong>Asana</strong></a> - A project management tool that allows users to create tasks, assign them to team members and track progress. It&rsquo;s a great way to keep track of team progress and collaborate with others.</li>
<li><a href="https://gsuite.google.com/"><strong>G Suite</strong></a> - A suite of web-based tools from Google, including Gmail, Google Docs, and Google Drive. These tools are great for collaboration, document creation, and storage.</li>
<li><a href="https://zoom.us/"><strong>Zoom</strong></a> - A video conferencing tool that allows users to host and join meetings, webinars, and video calls. It&rsquo;s a great way to stay in touch with clients and team members remotely.</li>
<li><a href="https://paypal.com/"><strong>PayPal</strong></a> - An online payment platform that allows users to send and receive money, as well as create invoices. It&rsquo;s a great way to handle transactions with clients and customers.</li>
<li><a href="https://canva.com/"><strong>Canva</strong></a> - A graphic design tool that allows users to create professional-looking graphics, even without design experience. It&rsquo;s a great way to create social media graphics, flyers, and other marketing materials.</li>
<li><a href="https://www.hubspot.com/"><strong>Hubspot</strong></a> - A marketing, sales, and service platform that allows businesses to attract, engage, and delight customers. It offers a variety of features, including marketing automation, lead management, and customer service tools.</li>
<li><a href="https://mailchimp.com/"><strong>Mailchimp</strong></a> - An email marketing platform that allows users to create and send email campaigns, manage subscriber lists and track results. It&rsquo;s a great tool for businesses to engage with their customers and grow their audience.</li>
<li><a href="https://github.com/"><strong>GitHub</strong></a> - A web-based platform for version control and collaboration that allows users to store, share, and collaborate on code and other files. It&rsquo;s a great tool for software developers, but can also be used by other businesses for version control and collaboration.</li>
<li><a href="https://www.surveymonkey.com/"><strong>SurveyMonkey</strong></a> - A survey tool that allows users to create, send, and analyze surveys. It&rsquo;s a great tool for businesses to gather customer feedback and research market trends.</li>
<li><a href="https://hootsuite.com/insights"><strong>Hootsuite Insights</strong></a> - A social media listening tool that allows businesses to track mentions and sentiments of their brand and competitors across social media platforms. It&rsquo;s a great tool for businesses to monitor their online presence and gain insights into customer sentiment.</li>
<li><a href="https://buffer.com/analyze"><strong>Buffer Analyze</strong></a> - A social media analytics tool that provides businesses with in-depth insights into their social media performance and audience engagement. It&rsquo;s a great tool for businesses to track the success of their social media campaigns and make data-driven decisions.</li>
<li><a href="https://airtable.com/"><strong>Airtable</strong></a> - A web-based database tool that allows businesses to create and manage databases and collaborate with team members. It&rsquo;s a great tool for businesses to organize and manage their data in a user-friendly way.</li>
<li><a href="https://www.canva.com/pro/"><strong>Canva Pro</strong></a> - A graphic design tool that provides businesses with advanced features such as unlimited storage, access to millions of stock images, and priority support. It&rsquo;s a great tool for businesses to create professional graphics and improve their marketing materials.</li>
<li><a href="https://www.upwork.com/"><strong>Upwork</strong></a> - A freelance marketplace that connects businesses with top talent for various projects and tasks. It&rsquo;s a great tool for businesses to find and hire freelancers for specific projects or tasks.</li>
<li><a href="https://zapier.com/"><strong>Zapier</strong></a> - An automation tool that allows businesses to connect and automate different web apps, such as Trello, Slack, Gmail, and more. It&rsquo;s a great tool for businesses to streamline their workflow and automate repetitive tasks.</li>
<li>Bonuses: <a href="http://clickfunnels.com/"><strong>ClickFunnels</strong></a>, <a href="https://www.docusign.com/"><strong>DocuSign</strong></a></li>
</ul>
<p>While this is not an extensive list, it gives a good overview of the available tools for freelancers, consultants, and entrepreneurs to help them stay organized and manage their time effectively. It&rsquo;s also worth noting that many of these apps and tools offer a free version, allowing users to try them out before committing to a paid plan.</p>
<p>Anyway, that&rsquo;s it for today.</p>
<p>Enjoy!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/the-jopwell-collection-4wtb4tr45jq-unsplash-1.webp" medium="image"/></item><item><title>Supercharge Your Business: Unlock the Power of AI to Take Your Business to</title><link>https://ajulu.netlify.app/posts/supercharge-your-business-unlock-the-power-of-ai-to-take-your-business-to-the-next-level/</link><pubDate>Sat, 21 Jan 2023 11:20:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/supercharge-your-business-unlock-the-power-of-ai-to-take-your-business-to-the-next-level/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Looks like soon, the only input humans will have to give in their businesses is the power button - and that&amp;rsquo;s only if the AI running the show is feeling generous.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Stephen Ajulu&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Welcome to the future of business, where AI is the new superpower - and it&amp;rsquo;s time to put it to work for you! Whether you&amp;rsquo;re looking to boost your marketing game or streamline your operations, we&amp;rsquo;ve got the inside scoop on all the latest AI tools that will make your competition green with envy.&lt;/p&gt;</description><content:encoded><![CDATA[<blockquote>
<p>&ldquo;Looks like soon, the only input humans will have to give in their businesses is the power button - and that&rsquo;s only if the AI running the show is feeling generous.&rdquo;</p>
<p>Stephen Ajulu</p>
</blockquote>
<p>Welcome to the future of business, where AI is the new superpower - and it&rsquo;s time to put it to work for you! Whether you&rsquo;re looking to boost your marketing game or streamline your operations, we&rsquo;ve got the inside scoop on all the latest AI tools that will make your competition green with envy.</p>
<p>Artificial Intelligence (AI) has the potential to revolutionize the way businesses operate, from automating mundane tasks to providing valuable insights for decision-making. Here are a few examples of how businesses can use AI to improve their operations:</p>
<ol>
<li><strong>Copywriting and email:</strong> One of the most time-consuming tasks for businesses is creating engaging content for marketing campaigns. CopyAI is an AI-powered writing assistant that can help businesses generate high-quality copy for emails, social media posts, and more. It can also help businesses optimize their emails for maximum open and click-through rates.</li>
<li><strong>Blog posts and social media:</strong> ChatGPT is an AI-powered language model that can help businesses create unique and engaging content for blog posts and social media. It can also be used to generate captions and hashtags to boost engagement on social media platforms.</li>
<li><strong>Coding:</strong> Github CoPilot is an AI-powered coding assistant that can help developers write code faster and more efficiently. It can provide suggestions for code snippets, help with debugging, and assist with code refactoring.</li>
<li>Other AI tools: There are many other AI tools available to businesses, such as natural language processing (NLP) for sentiment analysis, computer vision for image and video analysis, and predictive analytics for forecasting.</li>
</ol>
<p>Additional ways you can use AI to take your business to the next level:</p>
<ol>
<li><strong>Sales and marketing automation:</strong> AI-powered tools can help businesses automate repetitive tasks such as lead generation, customer segmentation, and personalized marketing campaigns.</li>
<li><strong>Personalized customer service</strong>: AI-powered chatbots and virtual assistants can provide 24/7 customer service, answering frequently asked questions and resolving issues quickly and efficiently.</li>
<li><strong>Inventory management</strong>: AI-powered systems can analyze sales data and predict future demand, helping businesses optimize inventory levels and avoid stockouts.</li>
<li><strong>Fraud detection:</strong> AI can help businesses detect fraudulent activities by analyzing patterns and anomalies in financial transactions.</li>
<li><strong>Optimizing operations</strong>: AI can help businesses improve efficiency by automating repetitive tasks, such as scheduling and resource allocation.</li>
<li><strong>Predictive maintenance:</strong> AI can help businesses predict when equipment or machinery is likely to fail, allowing for proactive maintenance and reducing downtime.</li>
<li><strong>HR and Recruitment:</strong> AI-powered tools can assist with automated resume screening, scheduling interviews, and even conducting initial interviews, making the process faster and more efficient.</li>
<li><strong>Supply Chain Optimization:</strong> AI-powered tools can help businesses optimize supply chain operations by predicting demand, identifying potential disruptions, and identifying cost-saving opportunities.</li>
</ol>
<p>Here are additional AI apps you can use:</p>
<ol>
<li><strong>GPT-3:</strong> A language generation model similar to ChatGPT, developed by OpenAI.</li>
<li><strong>AI Writer</strong>: A writing assistant tool similar to CopyAI.</li>
<li><strong>DeepAI</strong>: A deep learning platform that offers a wide range of AI services, including writing, image and video recognition, and natural language processing.</li>
<li><strong>Hugging Face</strong>: A natural language processing platform that offers pre-trained models for tasks such as language translation, text summarization, and sentiment analysis.</li>
<li><strong>OpenAI&rsquo;s Codenets</strong>: A code generation model, similar to GitHub CoPilot, that can assist in writing code and completing code snippets</li>
<li><strong>Codegen</strong>: An AI-powered code generation tool that helps developers write code faster and more efficiently.</li>
<li><strong>DataRobot</strong>: An AI platform that automates the process of building, deploying, and maintaining machine learning models.</li>
<li><strong>Grammarly</strong>: An AI-powered writing assistant that helps you improve your grammar, spelling, punctuation, and style.</li>
<li><strong>Jarvis</strong>: An AI-powered writing assistant that helps you improve your writing and generate content ideas.</li>
<li><strong>Persado</strong>: An AI-powered copywriting platform that generates personalized, high-performing marketing language.</li>
<li><strong>DALL-E</strong>: Another language generation model similar to ChatGPT, developed by OpenAI. It is known for its ability to create images from text descriptions and generate creative text.</li>
<li><strong>Textio</strong>: A platform that uses AI to help businesses improve their writing and create more inclusive and effective communication.</li>
<li><strong>MindMeld</strong>: An AI-powered platform that helps businesses create natural language interfaces for chatbots, virtual assistants, and other applications.</li>
<li><strong>Midjourney</strong>: A proprietary artificial intelligence program that creates images from textual descriptions.</li>
</ol>
<p>To begin, here are a few prompts that businesses can use with ChatGPT to generate high-quality content for their marketing campaigns and websites:</p>
<ol>
<li>Write a blog post about how businesses can use AI to improve their customer service.</li>
<li>Generate a list of 10 tips for businesses looking to implement AI in their operations.</li>
<li>Write a persuasive email to encourage businesses to adopt AI-powered solutions.</li>
<li>Generate a social media post about the benefits of using AI for inventory management.</li>
<li>Write a product description for an AI-powered tool for automating sales and marketing tasks.</li>
<li>Generate a script for a video explaining how AI can help businesses improve their operations.</li>
<li>Write a white paper on the future of AI in business and its potential impact on the industry.</li>
<li>Generate a list of frequently asked questions and answers about AI and its applications in business.</li>
<li>Write an article discussing the ethical considerations of using AI in business.</li>
<li>Generate a script for a podcast discussing the latest developments and trends in AI for businesses.</li>
</ol>
<p>These prompts are designed to generate a variety of types of content and can be adjusted to fit your specific needs and requirements. Keep in mind that while ChatGPT is a powerful tool, it&rsquo;s always important to review and edit the generated content before publishing it.</p>
<p>In conclusion, AI has the potential to provide valuable insights, automate tedious tasks, and improve the overall efficiency of businesses. By leveraging AI tools such as CopyAI, ChatGPT, Github CoPilot, and others, businesses can gain a competitive edge in their respective industries.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/pexels-kindel-media-8566472.webp" medium="image"/></item><item><title>Step-by-Step Guide to Improving Your Search Engine Ranking</title><link>https://ajulu.netlify.app/posts/step-by-step-guide-to-improving-your-search-engine-ranking/</link><pubDate>Thu, 19 Jan 2023 13:40:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/step-by-step-guide-to-improving-your-search-engine-ranking/</guid><description>&lt;p&gt;Welcome to my tutorial on how to improve your search engine ranking. Search engine optimization (SEO) is a vital aspect of digital marketing, and it can be the difference between a website that gets seen by millions and one that is hidden on page 10 of Google. In this tutorial, we will take you step-by-step through the process of optimizing your website for search engines, from understanding your target audience to creating high-quality content, building backlinks, and utilizing social media. We&amp;rsquo;ll also cover the importance of monitoring your progress and keeping your website updated. By the end of this tutorial, you&amp;rsquo;ll have the knowledge and tools you need to boost your website&amp;rsquo;s search engine ranking and drive more traffic to your site.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Welcome to my tutorial on how to improve your search engine ranking. Search engine optimization (SEO) is a vital aspect of digital marketing, and it can be the difference between a website that gets seen by millions and one that is hidden on page 10 of Google. In this tutorial, we will take you step-by-step through the process of optimizing your website for search engines, from understanding your target audience to creating high-quality content, building backlinks, and utilizing social media. We&rsquo;ll also cover the importance of monitoring your progress and keeping your website updated. By the end of this tutorial, you&rsquo;ll have the knowledge and tools you need to boost your website&rsquo;s search engine ranking and drive more traffic to your site.</p>
<ol>
<li>Understand your target audience: Knowing your target audience is crucial in order to create content that they will find relevant and valuable. Use tools like Google Analytics to identify your target audience&rsquo;s demographics, interests, and behavior.</li>
<li>Optimize your website&rsquo;s on-page elements: Ensure that your website is optimized for search engines by including keywords in your page titles, meta descriptions, and headings. Also, make sure your website is mobile-friendly and has a fast loading speed.</li>
<li>Create high-quality content: Develop high-quality, engaging content that is relevant to your target audience. Use keywords naturally throughout the content, and make sure it is well written and easy to read.</li>
<li>Build backlinks: Backlinks are one of the most important ranking factors for search engines. Reach out to other websites in your niche and ask them to link to your site. Also, make sure to have a good internal linking structure in your website</li>
<li>Utilize social media: Social media can be a powerful tool to promote your website and increase visibility. Share your content on social media platforms and engage with your followers to drive traffic to your site.</li>
<li>Use Google My Business: Google My Business is a free tool that allows businesses to manage their online presence across Google, including Search and Maps. By verifying and editing your business information, you can both help customers find you and tell them the story of your business.</li>
<li>Monitor your progress: Use tools like Google Analytics and Google Search Console to track your website&rsquo;s performance and see where you need to improve. Keep an eye on your search engine rankings and make adjustments as needed.</li>
<li>Keep your website updated and fresh: Regularly update your website with new content and features to keep it relevant and engaging. This will show search engines that your website is active and valuable to users.</li>
</ol>
<p>By following these steps, you can improve your search engine ranking and increase the visibility of your website. However, it&rsquo;s important to keep in mind that SEO is an ongoing process and you need to be constantly monitoring and adapting your strategy.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/luke-chesser-jkutrj4vk00-unsplash.webp" medium="image"/></item><item><title>Outlier Male Series: Mind, Body and Spirit</title><link>https://ajulu.netlify.app/posts/outlier-male-series-mind-body-and-spirit/</link><pubDate>Mon, 02 Jan 2023 13:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/outlier-male-series-mind-body-and-spirit/</guid><description>&lt;p&gt;Hello Guys,&lt;/p&gt;
&lt;p&gt;Now here&amp;rsquo;s the game plan.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ll focus primarily on Mind, Body and Spirit and our secondary focus will be Wealth/Riches. Now I do remember telling you that we should focus on 3 things only but things change.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m going to add URGENCY.&lt;/p&gt;
&lt;p&gt;Group link: &lt;a href="https://t.me/+rbD6JMGpnH5kYjg0"&gt;The OUTLIER MALE Telegram group&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id="mind"&gt;Mind&lt;/h1&gt;
&lt;p&gt;Here&amp;rsquo;s a simple guideline to follow.&lt;/p&gt;
&lt;h3 id="1-learn-digital-marketable-skills"&gt;1. Learn Digital Marketable Skills&lt;/h3&gt;
&lt;p&gt;Digital marketable skills are skills you can use to make money ONLINE. Everything is going online. You need to align yourself with the massive paradigm shift that&amp;rsquo;s going on&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hello Guys,</p>
<p>Now here&rsquo;s the game plan.</p>
<p>We&rsquo;ll focus primarily on Mind, Body and Spirit and our secondary focus will be Wealth/Riches. Now I do remember telling you that we should focus on 3 things only but things change.</p>
<p>I&rsquo;m going to add URGENCY.</p>
<p>Group link: <a href="https://t.me/+rbD6JMGpnH5kYjg0">The OUTLIER MALE Telegram group</a>.</p>
<h1 id="mind">Mind</h1>
<p>Here&rsquo;s a simple guideline to follow.</p>
<h3 id="1-learn-digital-marketable-skills">1. Learn Digital Marketable Skills</h3>
<p>Digital marketable skills are skills you can use to make money ONLINE. Everything is going online. You need to align yourself with the massive paradigm shift that&rsquo;s going on</p>
<p>Here are some. Pick your poison(skills). Now I&rsquo;d suggest you pick more than 1.</p>
<ol>
<li>Copywriting</li>
<li>UI/UX Design</li>
<li>Web Development</li>
<li>Search Engine Optimization</li>
<li>Social Media Marketing</li>
<li>Search Engine Ads(Google)</li>
<li>Graphic Design</li>
<li>Blockchain Development</li>
<li>Social Media Management</li>
<li>Writing</li>
<li>Data Science</li>
<li>Cloud Computing</li>
<li>Artificial Intelligence, Deep Learning, and Machine Learning</li>
<li>Animation</li>
<li>Video Editing(both short form and long form)</li>
<li>Email Marketing(+cold emailing)</li>
<li>Affiliate Marketing</li>
<li>App/Software Development</li>
<li>Illustration + NFT Art + Digital Art</li>
<li>Web Scraping</li>
<li>Hacking</li>
<li>Video/Audio Production</li>
<li>System Automation</li>
</ol>
<p>These are the ones I know off the top of my head. If you have another one, feel free to post it below in the comments.</p>
<h4 id="the-key-to-this-is-to-reach-10000-hours-of-mastery-with-the-skill-youve-chosen-or-with-this-whole-outlier-male-journey-thats-when-youll-start-to-see-the-progress-youve-made">The key to this is to reach 10,000 hours of mastery with the skill you&rsquo;ve chosen or with this whole outlier male journey, that&rsquo;s when you&rsquo;ll start to see the progress you&rsquo;ve made.</h4>
<h3 id="2-optimize-your-sleep">2. Optimize Your Sleep</h3>
<p>Here are some tips by <a href="https://hubermanlab.com/toolkit-for-sleep/">Dr. Huberman</a>:</p>
<ul>
<li>High-quality sleep is critical! Sleep is the foundation of mental health, cognitive health, and performance</li>
<li>Viewing direct morning sunlight within 30-60 minutes of waking will help you fall asleep and stay asleep at night, and optimize cortisol &amp; adenosine levels</li>
<li>Layer in multiple levers to be more alert: morning sunlight viewing, increasing body temperature, delaying caffeine, movement/exercise upon waking, light breakfast</li>
<li>Stack the deck to give your body predictable autonomic timing and properly set circadian rhythm to optimize sleep and wakefulness – even if you’re tired, exercise a little (doesn’t have to be intense) and eat a light breakfast, etc.</li>
<li>Avoid overhead fluorescent light as much as possible between 10 pm-4 am – these lights will eliminate melatonin circulating in the brain &amp; body and will hinder the ability to fall and stay asleep (instead, try soft lamps and dim screens as much as possible without straining eyes)</li>
<li>Viewing afternoon sunlight from sunset can help offset some of the negative effects of light viewing in the evening (10 pm-4 am)</li>
<li>Try to maintain a consistent sleep/wake schedule (+/- 1 hour) 7 days a week!</li>
<li>When all else fails, try this sleep stack cocktail (buy single ingredient supplements so you can use what works, ditch what doesn’t): magnesium threonate (145mg, 30-60 minutes before bed) + theanine (100-400mg, 30-60 minutes before bed) + apigenin (50mg, 30-60 minutes before bed)</li>
<li>Sleep apnea can have very damaging effects on sleep and health – train nasal breathing with these methods: (1) use medical tape to tape your mouth shut during sleep; (2) practice nasal breathing only during light exercise/cardio bouts</li>
</ul>
<p>Remember</p>
<ul>
<li>Best nootropic: sleep</li>
<li>Best stress-relief: sleep</li>
<li>Best trauma release: sleep</li>
<li>Best immune booster: sleep</li>
<li>Best hormone augmentation: sleep</li>
<li>Best emotional stabilizer: sleep</li>
</ul>
<h3 id="3-build-focus">3. Build Focus</h3>
<p>Some more tips from Dr. Huberman:</p>
<ul>
<li>Epinephrine/adrenaline, acetylcholine, and dopamine work together to facilitate the ability to get focused, direct focus, and stay focused over time</li>
<li>Binaural beats (40 Hz), white noise, pink noise, and brown noise can enhance focus &amp; more importantly, decrease the amount of time it takes to get into a focused state by ramping up neurochemicals</li>
<li>Blocking time: use ultradian cycles (90-minute bouts) for intensely focused sessions; assume it will take about 5-10 minutes to ease in and then ramp up; when finished, spend 10-30 minutes to deliberately defocus</li>
<li>Both things are true: fasted states and fed states (sufficient glucose but not overly stuffed belly) stimulate neuronal activity – leverage this and try one focused 90-minute bout in the morning (fasted) and another in the afternoon (fed)</li>
<li>Tip: leverage the benefits of stress through cold exposure <strong>–</strong> try a cold shower (uncomfortably cold but safe to stay in) for 1-5 minutes to increase epinephrine and dopamine in the brain and body to get the body into a focused state – the positive effects of epinephrine last up to an hour or more</li>
<li>The focus will drift unless you are an experienced meditator – the most important component of meditation is refocusing back to meditation and back to the breath – try 13 minutes per day</li>
<li>Meditation caveat: focused meditation in the 4 hours prior to bed actually hindered the ability to fall asleep and stay asleep</li>
<li>Using visual field to improve focus: set a timer for 30 seconds per day and try to focus on one object; keep adding 5 seconds per day looking directly at the location (be sure to blink!) – you can use this to help onramp into 90-minute focused bout</li>
<li>As always, start with behavioral tools (and dialing in sleep), then focus on nutrition, and try supplementation – when all else fails and you’ve consulted a doctor, lean on prescription drugs</li>
<li>Really sleep-deprived or having trouble focusing? Stack tools – for example, take a cold shower, leverage the visual field, and take alpha-GPC</li>
</ul>
<h3 id="4-read-books">4. Read Books</h3>
<p>Here are some books I suggest you start reading that will build your knowledge in place of the experience you don&rsquo;t have:</p>
<ul>
<li>Think and Grow Rich by Napoleon Hill</li>
<li>Rich Dad Poor Dad by Robert Kiyosaki</li>
<li>48 Laws of Power by Robert Greene</li>
<li>The Way of The Superior Man by David Deida</li>
<li>Rational Male Book 1 by Rollo Tomasi</li>
<li>The Male Advantage by Kris Sturmey</li>
<li>Meditations by Marcus Aurelius</li>
<li>The Art of War by Sun Tzu</li>
<li>12 Rules For Life: An Antidote to Chaos by Jordan B. Peterson</li>
<li>Obesity Code by Dr. Jason Fung</li>
<li>Unscripted by MJ Demarco</li>
<li>The US Navy Seal Survival Handbook</li>
<li>The Obstacle is The Way by Ryan Holiday</li>
<li>Meditations by Marcus Aurelius</li>
<li>The Illustrated Art of Manliness: All Books by Brett McKay</li>
<li>The King, Warrior, Magician, and Lover by Robert Moore &amp; Douglas Gillette</li>
<li>How To Win Friends and Influence People by Dale Carnegie</li>
<li>Estrogeneration by Anthony G. Jay, Ph.D.</li>
<li>Ego is The Enemy by Ryan Holiday</li>
<li>Bushcraft 101 by Dave Canterbury</li>
<li>100 Deadly Skills by Clint Emerson, Former Navy Seal</li>
<li>4 Hour Workweek by Timothy Ferriss</li>
<li>The Unplugged Alpha by Richard Cooper</li>
<li>Outliers by Malcom Gladwell</li>
<li>$100mOffers by Alex Hormozi</li>
</ul>
<p>These books are great and I suggest you read 10 pages a day and slowly build up to 20. These contain the experiences of more than 1,000 men.</p>
<p>Having their knowledge and being able to learn from their experiences is a blessing.</p>
<p>I&rsquo;d recommend you start with The Male Advantage by Kris Sturmey.</p>
<p>It will show you your worth as a man and how to further build it. I rate it 10/10.</p>
<h1 id="body">Body</h1>
<h3 id="1-work-outexercise">1. Work out/Exercise</h3>
<h2 id="principles-of-exercise--fitness">Principles Of Exercise &amp; Fitness</h2>
<p>The basic concepts of fitness are few, but the methods are vast</p>
<ul>
<li><strong>The 9 main concepts of training:</strong>
<ol>
<li>Skill</li>
<li>Speed</li>
<li>Power (function of speed and strength)</li>
<li>Strength</li>
<li>Hypertrophy (growing muscle mass)</li>
<li>Muscular endurance</li>
<li>Anaerobic power (ability to produce and sustain work in short bursts)</li>
<li>VO2 max (max heart rate)</li>
<li>Long-endurance (30+ minutes with no break)</li>
</ol>
</li>
<li>There are a handful of things you have to do in order to make all of the main concepts work, but you will not see changes in any domain without progressive overload</li>
<li><strong>Progressive overload</strong>: adaptation happens as a byproduct of stress – you have to push the system</li>
<li>If you do the same exercises over time, you will plateau</li>
<li>A progressive overload could be in the form of adding weights, adding repetitions, increasing frequency, varying complexity of movement</li>
</ul>
<p>Here are the exercises we&rsquo;ll focus on for the first year:</p>
<ol>
<li>
<p><strong>Push-ups or Bench presses</strong>: These work on the chest and arms. You can try multiple variations to suit you. If you are a beginner try Knee Push-ups</p>
<p>To begin, the push-up: Lie flat on the ground then push your body up without interfering with the natural curvature of the back.<br>
To begin, the bench press: Find the weights, load them, lie on your back, unrack and pull towards your body as far as possible then push up from your body as far as possible and repeat.<br>
<img src="/images/barbell-bench-press.gif" alt=""><img src="/images/close-grip-knee-push-up.gif" alt=""><img src="/images/barbell-bench-press.gif" alt=""></p>
</li>
<li>
<p><strong>Squats</strong>: This works the legs and the core(only slightly).<br>
To begin, stand up straight, then go down to a squat position, and then come up. How deep you go depends on your capacity but ensure you try to go deeper and repeat.<br>
To do this with weight simply depends on what kind of squat you are going to do. I recommend the back squat, whereby you load the weight to the back of your neck(wear thick clothing or place a hollow form then do a squat and repeat.<br>
<img src="/images/barbell-squat.gif" alt=""><img src="/images/barbell-bulgarian-split-squat.gif" alt=""></p>
</li>
<li>
<p><strong>Deadlifts</strong>: This works the legs, back and core.<br>
To begin, find weights, and place them near your feet while standing upright. Reach for the weights without bending your knees too much and bring them up until you are standing upright again then put them down and repeat.<br>
<img src="/images/barbell-deadlift.gif" alt=""><img src="/images/stiff-leg-deadlift.gif" alt=""></p>
</li>
<li>
<p><strong>Bent over rows or pull-ups</strong>: These work on the back and the arms<br>
To begin find a strong sturdy vertical pole that is placed slightly above your reach. Hold it with 2 arms and bring your chin over the pole then slowly drop down and repeat.<br>
To begin, find weights preferably a barbell or dumbbell, bend over extend your hands toward the floor while holding the weight then bring the weight to your chest then extend them back to the ground, and repeat.<br>
<img src="/images/barbell-bent-over-row.gif" alt=""><img src="/images/pull-up.gif" alt=""></p>
</li>
<li>
<p><strong>Military Overhead press</strong>: This works on the shoulders giving you that large shoulder and making that sexy V that girls love.<br>
To begin, find weights then bring them to your chest and push them upwards above your head then bring them down and repeat<br>
<img src="/images/barbell-military-press.gif" alt=""></p>
</li>
<li>
<p><strong>Calve raises</strong>: This works on the calves<br>
To begin: stand upright and stand on your toes like you are tiptoeing then come back to natural and repeat. You can add weights if desired.</p>
<p><img src="/images/dumbbell-calf-raise.gif" alt=""></p>
</li>
<li>
<p><strong>Plank</strong>: This strengthens the core which is responsible for keeping your upper body straight and provides spinal cord support. It does a bunch of other things which I believe you should research<br>
To begin lie flat on the ground then let your elbows and forearms touch the ground then lift and hold that position for a time.</p>
<p><img src="/images/plank.gif" alt=""></p>
</li>
<li>
<p><strong>Stretch</strong></p>
</li>
</ol>
<p>To start do 5 x 5 of each. That is 5 repetitions of 5 sets = 25 times if using weights. If using body weight do 5 x 10 = 50 times.</p>
<p>Do this 6 days a week unless you are over 35. If you are over 40 do 5 or 4 times a week.</p>
<p>Remember to set a rest day. Eat plenty of proteins and healthy fat. Increase weight, difficulty, intensity, or repetitions every week.</p>
<h3 id="2-diet">2. Diet</h3>
<ul>
<li><strong>Increase your protein intake especially from meat, eggs, and fish to maximize protein synthesis:</strong> consume 1.6-2.6g/kilogram of lean body mass
<ul>
<li>There aren’t noticeable benefits to going beyond this range</li>
<li>Protein is also more satiating</li>
</ul>
</li>
<li><strong>Try fermented foods</strong></li>
<li><strong>Eat some dark and leafy vegetables</strong></li>
<li><strong>Have some fruit e.g. berries and watermelon</strong></li>
<li><strong>Limit refined carbs, sugar, and seed oils</strong></li>
<li><strong>Try fasting. Fasting puts the body into a mode of autophagy and conservation of resources which are beneficial to health</strong></li>
<li><strong>Try a ketogenic diet. Benefits of the ketogenic diet:</strong> influences neurotransmitter levels (particularly glutamate, GABA, adenosine), changes calcium channel regulation, changes gene expression, reduces brain inflammation, improves the health of the gut microbiome, improves insulin resistance and signaling</li>
<li>More extreme forms of fasting (24 hours, alternate day, etc.) have more noticeable effects on lean body mass than 16:8 fasting</li>
<li><strong>Eating 2-3 high-quality protein meals per day will probably make more of a difference on lean body mass than time-restricted eating</strong></li>
<li><strong>Choose fasting depending on your goal:</strong> if you’re a high-level athlete or similar, it’s unlikely you’ll gain much intermittent fasting – if you want to maintain or lose weight and lose body fat, a 16:8 fast is fine to help control calories</li>
<li><strong>Don&rsquo;t snack</strong></li>
</ul>
<h1 id="spirit">Spirit</h1>
<p>This one is simple.</p>
<h3 id="1-pray-every-day-when-you-wake-up-and-go-to-sleep">1. Pray every day when you wake up and go to sleep</h3>
<p>This will help connect you to your Creator and have Him guide you.</p>
<h3 id="2-read-the-biblequran">2. Read the Bible/Quran</h3>
<p>This will help know what He expects from you.</p>
<h3 id="3-meditate">3. Meditate</h3>
<p>This will help clear your mind and bring peace.</p>
<h3 id="4-journal">4. Journal</h3>
<p>This will help you chain your thoughts to the physical realm.</p>
<p>It will help you plan out life and it will be a reminder of all you haven&rsquo;t achieved.</p>
<h3 id="5-help-others">5. Help others</h3>
<p>This will bring you down to earth and help you stay humble.</p>
<p>That&rsquo;s it guys that&rsquo;s the plan for this year.</p>
<p>I&rsquo;ll post the next year&rsquo;s plan before December.</p>
<p>For those who haven&rsquo;t joined the group yet.</p>
<p>Here&rsquo;s the link. It&rsquo;s a limited-time offer. It will soon be closed and paid.</p>
<h1 id="wealth">Wealth</h1>
<p>If you are in a 9 - 5. Start investing. We are close to a recession. Learn stocks, crypto, REITs, real estate, precious metals, watches, timber, and such.</p>
<p>Learn investing. Keep money aside and do dollar cost averaging(Put some money into investments every month/week/day)</p>
<p>Invest a little now then go head-deep in the middle of the recession. Millionaires are made in the middle of recessions just like diamonds are made under pressure or men are made during storms.</p>
<p>Learn investing.</p>
<p>If you are jobless, spend most of your time learning and testing(practicing) new skills and stack money for investment.</p>
<p>If you are an Investor, keep going.</p>
<p>If you are a business owner/entrepreneur stack money for investments.</p>
<p>Some good investments:</p>
<ol>
<li>Bitcoin</li>
<li>Ethereum</li>
<li>Small MarketCap Coins/Tokens</li>
<li>Gaming tokens</li>
<li>NFT tokens</li>
<li>Gold</li>
<li>Silver</li>
<li>Diamond</li>
<li>Healthcare REITs, Stocks, and ETFs</li>
<li>Energy REITS, Stocks, and ETFs</li>
<li>Utility NFTs</li>
<li>Government Bonds</li>
<li>Government Bills</li>
<li>Utility REITs, Stocks, and ETFs</li>
<li>Consumer staples Stocks, REITs, and ETFs</li>
</ol>
<iframe src="https://anchor.fm/stephenajulu/embed/episodes/Outlier-Male-Series-Mind--Body-and-Spirit-e1t0a29" height="102px" width="400px" frameborder="0" scrolling="no"></iframe>
<p>Group link: <a href="https://t.me/+rbD6JMGpnH5kYjg0">The OUTLIER MALE Telegram group</a>.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/photo-nic-khhukoxqo4k-unsplash.webp" medium="image"/></item><item><title>Add Users to Microsoft Dynamics Navision ERP</title><link>https://ajulu.netlify.app/posts/add-users-to-microsoft-dynamics-navision-erp/</link><pubDate>Wed, 07 Dec 2022 13:20:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/add-users-to-microsoft-dynamics-navision-erp/</guid><description>&lt;h2 id="adding-users-and-permissions"&gt;Adding Users and Permissions:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;To add a new NAV user is very easy. A new NAV user allows for a single username with access to the system and is used to specify the permissions that username will be granted.&lt;/li&gt;
&lt;li&gt;First, navigate to the User Card. To access this screen, type ‘Users’ in the search (Ctrl+f3) area or navigate to Departments/Administration/IT Administration/General/Users.&lt;/li&gt;
&lt;li&gt;Once there, click on “New” to create a new user or click “Edit” to modify an existing User Card.&lt;/li&gt;
&lt;li&gt;Below is the User Card. The required fields on the User Card are the Windows User Name and the User Permission Sets.&lt;/li&gt;
&lt;/ol&gt;
&lt;img src="https://haldengroup.com/wp-content/uploads/Setting-up-Users-in-NAV-1.webp" style="width: 100%;height: auto;"&gt;
&lt;h2 id="user-setup"&gt;User Setup:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;The User Setup screen is used to further customize a user’s access and permissions allowed in the system. Specific setups can be granted or revoked at the User Setup Screen.&lt;/li&gt;
&lt;li&gt;Navigate to the User Setup screen. To access this screen, type ‘User Setup’ in the search (ctrl+f3) area or navigate to Departments/Administration/Application Setup/Users/User Setup.&lt;/li&gt;
&lt;li&gt;Once there, click “New” which will allow you to add a new user to the User Setup list. Click “Edit” List to modify existing User Setups.&lt;/li&gt;
&lt;/ol&gt;
&lt;img src="https://haldengroup.com/wp-content/uploads/Setting-up-NAV-User-Permissions.webp" style="width: 100%;height: auto;"&gt;
&lt;ol&gt;
&lt;li&gt;User personalization is used to select a Profile ID that will alter the look and feel of the software for a specified user. This is often determined by the user’s role in the system.&lt;/li&gt;
&lt;li&gt;Navigate to the User Personalization Card. To access this screen, type ‘User Personalization’ in the search (ctrl+f3) area or navigate to Departments/Administration/Application Setup/Role Tailored Client/User Personalization.&lt;/li&gt;
&lt;li&gt;Once there, click the “New” button to add and assign a profile to a user. Click “Edit” to modify an existing user profile.&lt;/li&gt;
&lt;li&gt;Below is the User Personalization Card. The user ID field specifies the user account that will be affected and the Profile ID is where you can select the profile.&lt;/li&gt;
&lt;/ol&gt;
&lt;img src="https://haldengroup.com/wp-content/uploads/NAV-User-Personalization-Card.webp" style="width: 100%;height: auto;"&gt;</description><content:encoded><![CDATA[<h2 id="adding-users-and-permissions">Adding Users and Permissions:</h2>
<ol>
<li>To add a new NAV user is very easy. A new NAV user allows for a single username with access to the system and is used to specify the permissions that username will be granted.</li>
<li>First, navigate to the User Card. To access this screen, type ‘Users’ in the search (Ctrl+f3) area or navigate to Departments/Administration/IT Administration/General/Users.</li>
<li>Once there, click on “New” to create a new user or click “Edit” to modify an existing User Card.</li>
<li>Below is the User Card. The required fields on the User Card are the Windows User Name and the User Permission Sets.</li>
</ol>
<img src="https://haldengroup.com/wp-content/uploads/Setting-up-Users-in-NAV-1.webp" style="width: 100%;height: auto;">
<h2 id="user-setup">User Setup:</h2>
<ol>
<li>The User Setup screen is used to further customize a user’s access and permissions allowed in the system. Specific setups can be granted or revoked at the User Setup Screen.</li>
<li>Navigate to the User Setup screen. To access this screen, type ‘User Setup’ in the search (ctrl+f3) area or navigate to Departments/Administration/Application Setup/Users/User Setup.</li>
<li>Once there, click “New” which will allow you to add a new user to the User Setup list. Click “Edit” List to modify existing User Setups.</li>
</ol>
<img src="https://haldengroup.com/wp-content/uploads/Setting-up-NAV-User-Permissions.webp" style="width: 100%;height: auto;">
<ol>
<li>User personalization is used to select a Profile ID that will alter the look and feel of the software for a specified user. This is often determined by the user’s role in the system.</li>
<li>Navigate to the User Personalization Card. To access this screen, type ‘User Personalization’ in the search (ctrl+f3) area or navigate to Departments/Administration/Application Setup/Role Tailored Client/User Personalization.</li>
<li>Once there, click the “New” button to add and assign a profile to a user. Click “Edit” to modify an existing user profile.</li>
<li>Below is the User Personalization Card. The user ID field specifies the user account that will be affected and the Profile ID is where you can select the profile.</li>
</ol>
<img src="https://haldengroup.com/wp-content/uploads/NAV-User-Personalization-Card.webp" style="width: 100%;height: auto;">]]></content:encoded><media:content url="https://ajulu.netlify.app/images/istock-638149788-web.webp" medium="image"/></item><item><title>Benefits of Security in DevSecOps</title><link>https://ajulu.netlify.app/posts/benefits-of-security-in-devsecops/</link><pubDate>Sat, 26 Nov 2022 14:10:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/benefits-of-security-in-devsecops/</guid><description>&lt;p&gt;If you&amp;rsquo;re running a business, there&amp;rsquo;s a good chance you&amp;rsquo;ve heard of DevOps. This is a set of practices that automates the processes between software development and IT teams. This way, they can build, test, and release software faster and more reliably. In DevOps, &amp;ldquo;Dev&amp;rdquo; refers to development while &amp;ldquo;Ops&amp;rdquo; refers to operations.&lt;/p&gt;
&lt;p&gt;DevOps is an approach to software development that emphasizes communication, collaboration, and integration between developers and IT professionals. But in recent years, a new term has emerged: &lt;strong&gt;DevSecOps&lt;/strong&gt;.&lt;/p&gt;</description><content:encoded><![CDATA[<p>If you&rsquo;re running a business, there&rsquo;s a good chance you&rsquo;ve heard of DevOps. This is a set of practices that automates the processes between software development and IT teams. This way, they can build, test, and release software faster and more reliably. In DevOps, &ldquo;Dev&rdquo; refers to development while &ldquo;Ops&rdquo; refers to operations.</p>
<p>DevOps is an approach to software development that emphasizes communication, collaboration, and integration between developers and IT professionals. But in recent years, a new term has emerged: <strong>DevSecOps</strong>.</p>
<img src="https://lh5.googleusercontent.com/McOnwyGo1rd2OzZ6281Tu5Tf8wCJBo7yGCe5Wk1gpm82jvKpAnFG3aDHxjfSJmArLS_uPNUuydZdu1EjaWpF-YEtWXJLpmxupqexU_Qqbi46pKhbGKiJDtzHAeVryVcBl85fItHF5q7licTpZ-4msB8M63hBdEly2Fe-OpGhWNO_uIZLJyc3Keq1QNHg" width="624px">
<p><a href="https://media.kasperskycontenthub.com/wp-content/uploads/sites/103/2021/07/14123107/devsecops2.webp">Image Source</a></p>
<p>DevSecOps, being an extension of the DevOps philosophy, places an emphasis on security. In other words, DevSecOps integrates security into the software development life cycle. By doing so, security risks can be identified and mitigated early on—before they cause major problems.</p>
<h2 id="the-key-difference-security"><strong>The Key Difference: Security</strong></h2>
<p>The main difference between DevOps and DevSecOps is that DevSecOps places a greater emphasis on security.</p>
<p>While both DevOps and DevSecOps aim to streamline the software development process, DevSecOps does so with security in mind from start to finish. This means that security is built into every stage of the software development cycle—from planning and coding to testing and deployment.</p>
<p>To fully understand how DevSecOps works, you may watch this Youtube video from IBM Technology: <a href="https://www.youtube.com/watch?v=J73MELGF6u0&amp;ab_channel=IBMTechnology">What is DevSecOps?</a> Here, IBM&rsquo;s Andrea Crawford explains what DevSecOps is, what the benefits are, and provides use cases for employing DevSecOps principles.</p>
<h3 id="why-does-security-matter">Why Does Security Matter?</h3>
<p>In today&rsquo;s increasingly interconnected world, data breaches are becoming more and more common. In fact, a <a href="https://www.ibm.com/reports/data-breach">recent study</a> found that the average cost of a data breach is now $4.35 million—and that&rsquo;s just the average! For large businesses, the cost of a data breach can be much higher. Just think about some of the high-profile data breaches that have made headlines in recent years. The Equifax breach, for example, is estimated to have cost the company more than <a href="https://www.housingwire.com/articles/equifax-expects-to-pay-out-another-100-million-for-data-breach">$1.7 billion</a> since its disclosure in 2017.</p>
<img src="https://lh6.googleusercontent.com/xeZXJjoxVh4UDqG_Q3XwubicMTSQoCETf-B2YtrXTW39ZyHzBL6_fzAJ1OHvdoLN4ix2Ht4FsGa5p9dCNUVVys5QB1L_tSjkQbo-BDW-Rvrq723FLcg7MOp9_fVqP28uS5hBaRc2SJ-hxwWrmrK5zT4evxknOxp40p2IdGhvlKBaI8DBSgHM848kLHzC" width="624">
<p><a href="https://www.gannett-cdn.com/-mm-/0f85d771f147779145e2684ebfe0b1a34b94bc38/c=0-284-4365-2750/local/-/media/2017/09/15/USATODAY/USATODAY/636410796461382080-EQUIFAX-NYSE.webp?width=660&amp;height=373&amp;fit=crop&amp;format=pjpg&amp;auto=webp">Image Source</a></p>
<p>By implementing a DevSecOps approach to software development, businesses can help mitigate the risk of data breaches by building security into their applications from the ground up. By taking a proactive approach to cybersecurity, businesses can protect themselves—and their customers—from costly data breaches.</p>
<p>To help you further understand how DevSecOps can benefit your business, we&rsquo;ve put together a list of the benefits of security in DevSecOps:</p>
<h2 id="security-and-its-key-benefits-in-devsecops"><strong>Security and its Key Benefits in DevSecOps</strong></h2>
<h3 id="improved-security">Improved Security</h3>
<p>By integrating security into the development process, you can identify and fix potential security issues before they become problems.</p>
<p>Additionally, DevSecOps can help to automate security tasks, such as patch management and vulnerability scanning, which can free up time for your security team to focus on more strategic tasks.</p>
<h3 id="faster-delivery">Faster Delivery</h3>
<p>Another benefit of DevSecOps is that it can help to speed up the delivery of new features and updates. By automating repetitive tasks, such as testing and deployments, you can reduce the time it takes to get new features and updates out to your users.</p>
<p>Also, DevSecOps can help to reduce the risk of errors and downtime, as deployments are typically more reliable when they are automated.</p>
<h3 id="improved-collaboration">Improved Collaboration</h3>
<p>DevSecOps can also improve collaboration between your development and security teams. By integrating security into the development process, developers and security professionals can work together to identify and fix potential security issues.</p>
<p>DevSecOps can also help to create a culture of shared responsibility for security, which can help to improve communication and collaboration between teams.</p>
<h3 id="improved-quality">Improved Quality</h3>
<p>DevSecOps can also improve the quality of your applications and systems. By integrating security into the development process, you can identify and fix potential security issues before they become problems.</p>
<p>Plus, by automating repetitive tasks, such as testing and deployments, you can reduce the chance of errors and ensure that only high-quality code is deployed to production.</p>
<h3 id="greater-scalability">Greater Scalability</h3>
<p>DevSecOps can also help organizations scale their applications and systems more easily. Automating tasks enables organizations to quickly add new features or updates without having to worry about potential disruptions.</p>
<p>Moreover, DevSecOps helps to ensure that code changes are made in a controlled and safe manner, which makes it easier for organizations to roll back changes if necessary.</p>
<h3 id="increased-agility">Increased Agility</h3>
<p>Agility refers to an organization&rsquo;s ability to rapidly adapt to change. By automating many of the tasks involved in software development and by integrating security into every stage of the process, DevSecOps can help organizations be more agile and respond more quickly to changes in their environment.</p>
<h3 id="greater-visibility">Greater Visibility</h3>
<p>Finally, by integrating <a href="https://www.vanta.com/resources/security-reviews-for-startups-how-to-navigate-questionnaires-third-party-audits">security</a> into every stage of the process, DevSecOps can help organizations track their progress and identify potential problems early on. This visibility can help organizations to make better decisions about their development process and avoid costly mistakes further down the line.</p>
<h2 id="takeaway"><strong>Takeaway</strong></h2>
<p>Security is an essential part of any software development process. By integrating security into the development process, organizations can benefit from improved security, faster delivery, increased quality, and greater agility.</p>
<p>Additionally, DevSecOps can help to provide greater visibility into an organization&rsquo;s software development process and enable organizations to track their progress and identify potential problems early on.</p>
<p>So if you&rsquo;re not already using <a href="https://nightfall.ai/what-is-devsecops-and-how-to-implement-it">DevSecOps </a>within your organization, now is the time to start!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/security-protection-anti-virus-software-60504.webp" medium="image"/></item><item><title>8 Basic Laws Of Men</title><link>https://ajulu.netlify.app/posts/8-basic-laws-of-men/</link><pubDate>Thu, 10 Nov 2022 21:30:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/8-basic-laws-of-men/</guid><description>&lt;h3 id="law-1-build-your-foundation"&gt;&lt;strong&gt;Law 1: Build Your Foundation&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-2-equip-yourself-for-the-journey"&gt;&lt;strong&gt;Law 2: Equip Yourself For The Journey&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-3-avoid-the-major-unnecessary-obstacles"&gt;&lt;strong&gt;Law 3: Avoid The Major Unnecessary Obstacles&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-4-tap-into-your-masculine-energy"&gt;&lt;strong&gt;Law 4: Tap Into Your Masculine Energy&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-5-find-a-brotherhood"&gt;&lt;strong&gt;Law 5: Find A Brotherhood&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-6-pick-the-right-woman"&gt;&lt;strong&gt;Law 6: Pick The Right Woman&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-7-inspire-with-your-victory"&gt;&lt;strong&gt;Law 7: Inspire With Your Victory&lt;/strong&gt;&lt;/h3&gt;
&lt;h3 id="law-8-grow-your-net-worth"&gt;&lt;strong&gt;Law 8: Grow Your Net Worth&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Photo by &lt;a href="https://unsplash.com/@jens_lindner?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText"&gt;Jens Lindner&lt;/a&gt; on &lt;a href="https://unsplash.com/?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;</description><content:encoded><![CDATA[<h3 id="law-1-build-your-foundation"><strong>Law 1: Build Your Foundation</strong></h3>
<h3 id="law-2-equip-yourself-for-the-journey"><strong>Law 2: Equip Yourself For The Journey</strong></h3>
<h3 id="law-3-avoid-the-major-unnecessary-obstacles"><strong>Law 3: Avoid The Major Unnecessary Obstacles</strong></h3>
<h3 id="law-4-tap-into-your-masculine-energy"><strong>Law 4: Tap Into Your Masculine Energy</strong></h3>
<h3 id="law-5-find-a-brotherhood"><strong>Law 5: Find A Brotherhood</strong></h3>
<h3 id="law-6-pick-the-right-woman"><strong>Law 6: Pick The Right Woman</strong></h3>
<h3 id="law-7-inspire-with-your-victory"><strong>Law 7: Inspire With Your Victory</strong></h3>
<h3 id="law-8-grow-your-net-worth"><strong>Law 8: Grow Your Net Worth</strong></h3>
<p>Photo by <a href="https://unsplash.com/@jens_lindner?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Jens Lindner</a> on <a href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/jens-lindner-dp6g1yjwqca-unsplash.webp" medium="image"/></item><item><title>12 Rules for Life: An Antidote to Chaos by Jordan B Peterson - Digested Book</title><link>https://ajulu.netlify.app/posts/book-summary-12-rules-by-jordan-peterson/</link><pubDate>Thu, 10 Nov 2022 20:50:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/book-summary-12-rules-by-jordan-peterson/</guid><description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;J&lt;/strong&gt;ust a few years ago, I was an unknown professor writing academic books that nobody read. Then, with God’s help, I decided to stop feeling sorry for myself and develop my potential. Pinkos and wishy-washy liberals had cornered the market in cod psychology, so I guessed there must be a huge hunger for a self-help book, backed up with religion, mythology, CAPITAL LETTERS, and stating the obvious – one directed at responsible, socially minded conservatives craving some pseudointellectual ideology to prop up their beliefs. And bingo! Here are my 12 Rules for Life.&lt;/p&gt;</description><content:encoded><![CDATA[<blockquote>
<p><strong>J</strong>ust a few years ago, I was an unknown professor writing academic books that nobody read. Then, with God’s help, I decided to stop feeling sorry for myself and develop my potential. Pinkos and wishy-washy liberals had cornered the market in cod psychology, so I guessed there must be a huge hunger for a self-help book, backed up with religion, mythology, CAPITAL LETTERS, and stating the obvious – one directed at responsible, socially minded conservatives craving some pseudointellectual ideology to prop up their beliefs. And bingo! Here are my 12 Rules for Life.</p>
<p>Jordan Peterson</p>
</blockquote>
<h3 id="1-stand-up-straight-with-your-shoulders-straight"><strong>1 Stand up straight with your shoulders straight</strong></h3>
<p>Most lobsters are complete bastards left to their own devices. Most humans are complete bastards left to their own devices. This proves there is a God who wants us to have order. Order is Masculine and Chaos is Feminine. Therefore to move towards Order, we all need to man up. Happiness is pointless. We are all on this Earth to suffer. So learn to suffer like a man. Not everyone can be as rich and successful as me, but try to be less of a failure than you already are.</p>
<h3 id="2-treat-yourself-like-someone-you-are-responsible-for-helping"><strong>2 Treat yourself like someone you are responsible for helping</strong></h3>
<p>The story of the Garden of Eden shows that we are all touched by Original Sin But you have a choice. You can either seek Heaven or be dragged down into Hell. Yes, you have a shameful, sinful nature but for God’s sake just make a bit of an effort. Stop waiting for other people to dig you out of your pitiful hole.</p>
<h3 id="3-befriend-people-who-want-the-best-for-you"><strong>3 Befriend people who want the best for you</strong></h3>
<p>We are all Being. Just some of us are better Beings. Learn to tell the difference. Some people are beyond help. They are merely exploiting the willingness of good people to help them and, as Dostoyevsky rightly observes, will drag you down to their level. So stick with the winners. If people are determined to screw up, let them. They are nothing to do with the Divine Purpose.</p>
<h3 id="4-compare-yourself-to-who-you-were-yesterday-not-the-useless-person-you-are-today"><strong>4 Compare yourself to who you were yesterday, not the useless person you are today</strong></h3>
<p>Face it, you’re never going to be that smart, so don’t compare yourself to someone who is. Start by getting on your knees to pray. Even if you don’t Believe in God. Atheists are merely people who are blinded to the true way of Being. There, you feel marginally less useless already.</p>
<h3 id="5-do-not-let-your-children-do-anything-that-makes-you-dislike-them"><strong>5 Do not let your children do anything that makes you dislike them</strong></h3>
<p>Remember that children are born with Original Sin and have a huge capacity for Evil. They are not Innocent Beings. They need Discipline if they are going to grow up to be even vaguely worthwhile humans. And slap them if necessary – don’t listen to what the lefties say.</p>
<h3 id="6-set-your-house-in-order-before-you-criticize-the-world"><strong>6 Set your house in order before you criticize the world</strong></h3>
<p>Remember the story of Cain and Abel? Well, read it then. Yes, Abel was a schmuck who deserved to die and Cain wasn’t quite as goddamn perfect as he thought he was. He deserved to die, too. We all deserve to die. So stop moaning if someone is richer and better-looking than you.</p>
<h3 id="7-pursue-what-is-meaningful-not-what-is-expedient"><strong>7 Pursue what is meaningful, not what is expedient</strong></h3>
<p>Life is suffering. The Book of Genesis tells us that. There is no easy way around this. So quit looking for shortcuts and start reading Nietzsche.</p>
<h3 id="8-tell-the-truth-or-at-least-dont-lie"><strong>8 Tell the truth. Or at least don’t lie</strong></h3>
<p>To be honest, I’m scrabbling around for things but my publishers tell me I need 12. By telling you the Truth about this, I am an Improved Being. Certainly better than you.</p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-12-rules-for-life-an-antidote-to-chaos-53122865.html">12 Rules for Life: An Antidote to Chaos, by Jordan B Peterson (Jumia 1,800/=)</a></p>
<h3 id="9-assume-the-person-you-are-listening-to-knows-something-you-dont"><strong>9 Assume the person you are listening to knows something you don’t</strong></h3>
<p>Just shut up, quit moaning, and listen to me. I know things you don’t. So don’t expect me to listen to you. That’s not the way things work. I’m here to make you feel Better about Yourself by telling you things you already know in a way that makes you feel clever.</p>
<h3 id="10-be-precise-in-your-speech"><strong>10 Be precise in your speech</strong></h3>
<p>Confront the chaos of Being. Don’t try to beat about the bush. Things are going to be terrible. Oedipus killed his Dad. You may well kill yours. Get over it. Face up to the real horrors of the world.</p>
<h3 id="11-do-not-bother-children-while-they-are-skateboarding"><strong>11 Do not bother children while they are skateboarding</strong></h3>
<p>This is the rule that’s the real catnip for right-wingers everywhere. Want to know why the world is falling apart? It’s because liberals are turning boys into girlies with their namby-pamby ways. Let boys do boy things and girls do girl things. Nowhere in the Bible does God say anything about this trans nonsense. There’s nothing wrong with men having all the best jobs and women staying home to look after the kids. So back off, ladies, and give us men a break.</p>
<h3 id="12-pet-a-cat-when-you-encounter-one-in-the-street"><strong>12 Pet a cat when you encounter one in the street</strong></h3>
<p>OK. So I really am scraping the barrel now. We’re all going to die. Probably painfully. So just make the best of what you’ve got. If you see a cat, stroke it. You might feel better. Though probably not. And if there are no cats, pet something else. Like a dog.</p>
<p><strong>Digested read:</strong> Blessed are the Strong, for they shall inherit the Earth.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/book_nrd_20180319_french.webp" medium="image"/></item><item><title>Koha: How To Setup Gmail Email Notices with Postfix</title><link>https://ajulu.netlify.app/posts/koha-how-to-setup-gmail-email-notices-with-postfix/</link><pubDate>Thu, 10 Nov 2022 19:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/koha-how-to-setup-gmail-email-notices-with-postfix/</guid><description>&lt;h2 id="1-installation-of-postfix-mail-server"&gt;&lt;strong&gt;1. Installation of postfix mail server&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Open a terminal and apply the following commands,&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install postfix
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Select &amp;ldquo;no configuration&amp;rdquo; in the post-installation screen.&lt;/p&gt;
&lt;h2 id="2-copy-the-configuration-file"&gt;&lt;strong&gt;2. Copy the configuration file.&lt;/strong&gt;&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;sudo cp /usr/share/postfix/main.cf.debian /etc/postfix/main.cf
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="3-install-the-following-packages-as-well"&gt;&lt;strong&gt;3. Install the following packages as well&lt;/strong&gt;&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;sudo apt-get install libsasl2-2 libsasl2-modules ca-certificates mailutils
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id="4-open-the-following-file-and-add-a-few-lines"&gt;&lt;strong&gt;4. Open the following file and add a few lines.&lt;/strong&gt;&lt;/h2&gt;
&lt;pre&gt;&lt;code&gt;sudo nano /etc/postfix/main.cf
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Add the following lines at the bottom of the file.&lt;/p&gt;</description><content:encoded><![CDATA[<h2 id="1-installation-of-postfix-mail-server"><strong>1. Installation of postfix mail server</strong></h2>
<p>Open a terminal and apply the following commands,</p>
<pre><code>sudo apt-get update &amp;&amp; sudo apt-get install postfix
</code></pre>
<p>Select &ldquo;no configuration&rdquo; in the post-installation screen.</p>
<h2 id="2-copy-the-configuration-file"><strong>2. Copy the configuration file.</strong></h2>
<pre><code>sudo cp /usr/share/postfix/main.cf.debian /etc/postfix/main.cf
</code></pre>
<h2 id="3-install-the-following-packages-as-well"><strong>3. Install the following packages as well</strong></h2>
<pre><code>sudo apt-get install libsasl2-2 libsasl2-modules ca-certificates mailutils
</code></pre>
<h2 id="4-open-the-following-file-and-add-a-few-lines"><strong>4. Open the following file and add a few lines.</strong></h2>
<pre><code>sudo nano /etc/postfix/main.cf
</code></pre>
<p>Add the following lines at the bottom of the file.</p>
<pre><code>relayhost = [smtp.gmail.com]:587
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_tls_CAfile = /etc/postfix/cacert.pem
smtp_use_tls = yes
</code></pre>
<h2 id="5-configure-gmail"><strong>5. Configure Gmail</strong></h2>
<p>Now for Gmail to work with an SMTP server. One of two things must happen.</p>
<ol>
<li>For corporate accounts(Google Workspace for Business): You must go to &ldquo;Manage Account&rdquo; - &ldquo;Security&rdquo; and then allow less secure apps to access Gmail.</li>
<li>For normal/free accounts: You must enable 2-factor authentification and then set up an App Password.</li>
</ol>
<p>Open the following file and add the Google app password for Gmail.</p>
<pre><code>sudo nano /etc/postfix/sasl_passwd
</code></pre>
<p>Add the following line in the opened file.</p>
<pre><code>[smtp.gmail.com]:587 urgmailid@gmail.com:yourpassword
</code></pre>
<p>Add your Gmail username and password.</p>
<h2 id="6-change-the-permission-of-the-following-file"><strong>6. Change the permission of the following file.</strong></h2>
<pre><code>sudo chmod 400 /etc/postfix/sasl_passwd
</code></pre>
<h2 id="7-translate-the"><strong>7. Translate the <em>/etc/postfix/sasl_passwd</em> to Postfix lookup tables.</strong></h2>
<pre><code>sudo postmap /etc/postfix/sasl_passwd
</code></pre>
<h2 id="8-create-the"><strong>8. Create the <em>/etc/aliases.db</em></strong></h2>
<pre><code>sudo postalias hash:/etc/aliases
</code></pre>
<h2 id="9-create-the"><strong>9. Create the <em>/etc/postfix/cacert.pem</em></strong></h2>
<p>Here depends on the Ubuntu version and how recently it&rsquo;s been updated.</p>
<p>As such go to /etc/ssl/certs/ then find any certificate with <em>SecureCA.pem</em> then replace the Equifax section and place the one you&rsquo;ve found.</p>
<pre><code>sudo cat /etc/ssl/certs/Equifax_Secure_CA.pem &gt;&gt; /etc/postfix/cacert.pem
</code></pre>
<h2 id="10-restart-postfix"><strong>10. Restart Postfix.</strong></h2>
<pre><code>sudo /etc/init.d/postfix restart
</code></pre>
<h2 id="11-enable-email-service-in-koha"><strong>11. Enable email service in Koha</strong></h2>
<p>Execute the following command in a terminal</p>
<pre><code>sudo koha-email-enable library
</code></pre>
<h2 id="13-check-the-following-settings-in-koha-to-send-email-notices"><strong>13. Check the following settings in Koha to send email notices,</strong></h2>
<p><strong>Koha &gt; Administration &gt; Patron categories &gt; Overdue notice required &gt; Yes</strong><br>
[Check for each patron category]</p>
<img src="https://1.bp.blogspot.com/-X6HmNV23Gc0/WEGrylqX5NI/AAAAAAAAT74/r6TEsZN0mAAHVVxWNskVfnJWZIz39bFlACLcB/s640/Koha%2B%25E2%2580%25BA%2BAdministration%2B%25E2%2580%25BA%2BPatron%2Bcategories%2B%25E2%2580%25BA%2BMessaging%2Bpreferences.webp" style="max-width:100%;height:auto;">
<p><strong>Koha Administration &gt; Global System Preferences &gt; Patrons &gt; Enhancedmessagingpreferences &gt; Allow</strong></p>
<p>Set <strong>Koha</strong> &gt; <strong>Tools</strong> &gt; [<strong>Overdue Notice/status triggers</strong>]</p>
<img src="https://1.bp.blogspot.com/-nika5CdbheM/WEGrO2reR_I/AAAAAAAAT70/TRcK_LeVDog6m7mFP6YdSZiBVaU_0ZoPwCLcB/s640/Koha%2B%25E2%2580%25BA%2BTools%2B%25E2%2580%25BA%2BNotice%2Btriggers.webp" style="max-width:100%;height:auto;">
<h2 id="14-additional-smtp-setup"><strong>14. Additional SMTP Setup</strong></h2>
<p>Configure in the SMTP Server page under Additional parameters in Koha administration</p>
<p>Go to Home &ndash;&gt; Administration &ndash;&gt; Additional parameters &ndash;&gt; SMTP servers &ndash;&gt; New SMTP Server</p>
<p>Name: GMail</p>
<p>Host: smtp.gmail.com</p>
<p>Port: 465</p>
<p>SSL: SSL (authentication)</p>
<p>User name: <a href="mailto:libraryemail@gmail.com">libraryemail@gmail.com</a></p>
<p>Password: theapppassword</p>
<p>Update in the branch library details,</p>
<p>Go to Home &ndash;&gt; Administration &ndash;&gt; libraries &ndash;&gt; choose your library update SMTP server selecting the new one we have created</p>
<h2 id="14-test-the-configuration"><strong>14. Test the configuration</strong></h2>
<p>You can test the configuration by running the following command</p>
<pre><code>echo &quot;Test Postfix Gmail LIBRARY&quot; | mail -s &quot;Postfix Gmail SMTP Relay&quot; reciever@gmail.com
</code></pre>
<h5 id="you-are-ready-to-send-emails-from-koha-cheers"><strong>You are ready to send emails from koha, Cheers!</strong></h5>
<p>I also offer this setup as a service for $5: <a href="/contact"><strong>Contact me</strong></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/koha-user.webp" medium="image"/></item><item><title>Hire Web3 Developers: Everything you need to know</title><link>https://ajulu.netlify.app/posts/hire-web3-developers-everything-you-need-to-know/</link><pubDate>Fri, 04 Nov 2022 09:36:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/hire-web3-developers-everything-you-need-to-know/</guid><description>&lt;p&gt;The blockchain ecosystem has seen unprecedented growth with many companies now looking to hire Web3 developers with experience in cryptocurrency.&lt;/p&gt;
&lt;p&gt;The web is undergoing dramatic changes. Of the latest changes is Web3, a new version of the internet, which is quickly expanding in size and popularity.&lt;/p&gt;
&lt;p&gt;As it&amp;rsquo;s still a new idea, finding &lt;strong&gt;Web3 engineers&lt;/strong&gt; is a tedious task. It&amp;rsquo;s mostly cryptocurrency and blockchain enthusiast developers who are mastering this new form of the web, which is destined to change the internet in ways we have yet to understand.&lt;/p&gt;</description><content:encoded><![CDATA[<p>The blockchain ecosystem has seen unprecedented growth with many companies now looking to hire Web3 developers with experience in cryptocurrency.</p>
<p>The web is undergoing dramatic changes. Of the latest changes is Web3, a new version of the internet, which is quickly expanding in size and popularity.</p>
<p>As it&rsquo;s still a new idea, finding <strong>Web3 engineers</strong> is a tedious task. It&rsquo;s mostly cryptocurrency and blockchain enthusiast developers who are mastering this new form of the web, which is destined to change the internet in ways we have yet to understand.</p>
<p>Before we talk about how to hire Web3 developers, let&rsquo;s talk about Web3 itself.</p>
<h2 id="what-is-web3"><strong>What is Web3?</strong></h2>
<p>Web3, unlike its predecessors, Web 1.0 and Web 2.0, is based on peer-to-peer (P2P) decentralized networks, such as blockchain.</p>
<p>Blockchain is a hallmark building block of cryptocurrency, and Web3 is a product of both. Web3 developers create apps that aren&rsquo;t limited to a single cloud server but are instead distributed on a blockchain or decentralized P2P network that isn&rsquo;t controlled by a central authority.</p>
<p>In simpler words, Web3 is similar to how most cryptocurrencies work based on the blueprint of Bitcoin.</p>
<p>How does this differ from the existing Web 2.0? While Web 2.0 is user-centric (most of the content is user-generated), Web3 has taken this approach to the next level by introducing more autonomy and keeping things more transparent and relatable. In Web3, computers are heavily involved in interpreting information on a human level.</p>
<p>Web3 has many additional attributes that distinguish it from Web 2.0 — it&rsquo;s verifiable, self-governing, permission-less, distributed, stateless, and has built-in payment systems (cryptocurrency).</p>
<p>This lack of transparency and verification led to Web 2.0 containing too much content and information, most of which isn&rsquo;t helpful for general users. Its security is also sub-par, which is why there are too many hackers today and a marked increase in identity theft and other cyber-crimes.</p>
<p>Any application built on Web3 would be developed and owned by the users as they help create and maintain the app, earning their stake along the way. This is just how Bitcoin operates, as miners of the currency earn Bitcoins when they facilitate transactions through computing operations.</p>
<p>The apps on Web3 are called &ldquo;dApps,&rdquo; which is short for &ldquo;decentralized applications.&rdquo; You can expect to hear this term more often in the near future.</p>
<p>An effective Web3 developer is one who is familiar with the concept of Web3, is proficient in the relevant programming languages, and has the right tech stack to back their development work.</p>
<h2 id="what-tech-stack-do-web3-developers-use-skills-and-tools"><strong>What Tech Stack Do Web3 Developers Use: Skills and Tools</strong></h2>
<p>The tech stack, or developer stack, refers to the technology or tools the developer uses and excels at. A good example is the MEAN stack, which is comprised of MongoDB, Express.js, AngularJS/Angular, and Node.js.</p>
<p>For Web3, there&rsquo;s a specific tech stack that the developer you&rsquo;re hiring must use.</p>
<h3 id="web3-sdksdapps"><strong>Web3 SDKs/dApps</strong></h3>
<p>The Web3 SDKs, or libraries, are essential for building any dApp. These libraries support the interaction with a blockchain, such as Ethereum, and conduct transactions.</p>
<p>The most important of these SDKs are <a href="https://web3js.readthedocs.io/en/v1.5.2/">web3.js</a>, <a href="https://web3py.readthedocs.io/en/stable/">web3.py</a>, and <a href="https://docs.ethers.io/v5/">ethers.js</a>. These are also linked with smart contracts, which are explained further below.</p>
<h3 id="cryptocurrency-wallets"><strong>Cryptocurrency Wallets</strong></h3>
<p>If you&rsquo;ve ever dabbled with cryptocurrency, you probably already know what a crypto wallet is. It holds your cryptocurrency and can be either a digital or hardware wallet. For Web3 applications, a wallet is required to facilitate transactions.</p>
<p>There&rsquo;s a fee for the writing operations on the blockchain, which must be drawn from the wallet. For Web3, the developer can create an ETH (ethers) wallet using any of the common languages, such as Python, JavaScript, or Ruby. Alternatively, developers can use an existing wallet platform like <a href="https://metamask.io/">MetaMask</a>.</p>
<h3 id="nodes"><strong>Nodes</strong></h3>
<p>Nodes make up the blockchain and retain a copy of it. These are also called Web3 providers for this reason, as the application&rsquo;s connectivity with the blockchain hinges on these nodes. Without these nodes, dApp cannot communicate with the smart contracts.</p>
<p>The most commonly used provider is QuickNode, which provides a global network of nodes powered by speedy operations.</p>
<h3 id="smart-contracts"><strong>Smart Contracts</strong></h3>
<p>In the crypto world, smart contracts are pieces of code that live on the blockchain. Written in <a href="https://docs.soliditylang.org/en/v0.8.10/">Solidity</a>, these cannot be altered or mutated. This code runs when the conditions for it to run are met.</p>
<p>This automates the workflow when the participants of the blockchain confirm an outcome. These smart contracts (pioneered by Ethereum) also helped give Ethereum the edge over Bitcoin in terms of transaction speed.</p>
<p><strong>Related:</strong> <a href="https://www.revelo.com/blog/hire-nft-developer"><strong>Hire NFT Developers »</strong></a></p>
<p><strong>Related:</strong> <a href="https://www.revelo.com/blog/what-to-look-for-in-a-mobile-app-developer"><strong>What to Look for in a Mobile App Developer</strong></a></p>
<h2 id="web3-developer-salaries"><strong>Web3 Developer Salaries</strong></h2>
<p>The average yearly salaries for Web3 developers can vary greatly depending on what you&rsquo;re hiring them for. Here&rsquo;s an overview of the most popular <strong>Web3 expert roles and their salaries</strong>.</p>
<h3 id="blockchain-developer"><strong>Blockchain Developer</strong></h3>
<p>According to <a href="https://www.ziprecruiter.com/Salaries/Blockchain-Developer-Salary">ZipRecruiter</a>, the average yearly salary for a blockchain developer is $154,550 or $74 per hour. Note that this average is mostly drawn from larger companies. If you add smaller companies and startups into the mix, the average yearly salary drops to <a href="https://web3.career/web3-salaries/blockchain-developer">$80,000</a> per year.</p>
<p>Since the term &ldquo;blockchain developer&rdquo; is a broad descriptor, the associated salaries tend to vary. In general, there are two types of blockchain developers: blockchain software developers and core blockchain developers.</p>
<ol>
<li>
<p><strong>Blockchain software developers:</strong> Blockchain software developers are responsible for creating applications based on blockchain protocol and architecture. One of their main duties is to create <a href="https://www.ibm.com/topics/smart-contracts">smart contracts</a>, which are programs stored on a blockchain that automatically run when conditions are met. Small contracts are usually used to automate workflows and agreement execution so every participant will immediately know the outcome.</p>
<p>They also create decentralized applications (dApps) that run on the blockchain, making them comparable with web developers, who use web architects&rsquo; design and protocol to create web applications. Additionally, these software developers are responsible for the front-end and back-end development of dApps and supervising the stack that runs them.</p>
</li>
<li>
<p><strong>Core blockchain developers:</strong> These blockchain developers are responsible for creating the architecture, design, and security of the blockchain system. They also:</p>
</li>
</ol>
<ul>
<li>Design the blockchain protocols</li>
<li>Design security patterns and consensus protocols for the network</li>
<li>Supervise the entire blockchain network</li>
</ul>
<p>Despite their differences, both types of blockchain developers require a similar skill set. Here are the main blockchain developer hard skills you should look for when hiring a blockchain developer for your team:</p>
<ol>
<li>
<p><strong>Cryptography:</strong> Cryptography is the study of blockchain protocols that prevent unauthorized and unwanted parties from accessing your data. A popular concept in cryptography is public-key cryptography, which forms the backbone of cryptocurrency transactions.</p>
<p>Another hot topic is cryptographic hashing, which transforms cleartext passwords into enciphered text for storage. This slows down threat actors since they&rsquo;ll have to decipher these hash values if they want to exploit the passwords.</p>
</li>
<li>
<p><strong>Data structures:</strong> Every blockchain developer needs to have extensive knowledge of data structures. This is because blockchain networks consist of data structures.</p>
</li>
<li>
<p><strong>Blockchain architecture:</strong> Blockchain developers need to know what ledgers are, how smart contracts work, and what consensus is. They should also be familiar with all four types of blockchain architecture: consortium, private, public, and hybrid.</p>
</li>
<li>
<p><strong>Web development:</strong> Blockchain developers should also know how to develop and create web apps, particularly if they&rsquo;re blockchain software developers.</p>
</li>
<li>
<p><strong>A variety of programming languages:</strong> Finally, your blockchain developer should have experience with at three or more of the following programming languages:</p>
</li>
</ol>
<ul>
<li>Java</li>
<li>Python</li>
<li>C++</li>
<li><a href="https://www.revelo.com/hire/c-net-developers">C#</a></li>
<li>PHP</li>
<li>JavaScript</li>
<li>Go</li>
<li>Simplicity</li>
<li>SQL</li>
</ul>
<p>Like the rest of the roles on this list, blockchain developers need the following soft skills:</p>
<ul>
<li>Commitment to and passion for the Web3 landscape</li>
<li>Interest in learning more about blockchain technologies</li>
<li>Client and project management skills</li>
<li>The ability to meet deadlines ahead of time</li>
<li>The ability to work in multi-disciplinary teams</li>
</ul>
<h3 id="solidity-developer"><strong>Solidity Developer</strong></h3>
<p>The average base salary for a Solidity developer is <a href="https://cryptocurrencyjobs.co/salaries/solidity-developer/">$127,500 per year</a>. Remote Solidity developers can earn up to an average of $145,000 per year, depending on which company they&rsquo;re working for.</p>
<p>Solidity developers use the Solidity language to create and deploy smart contracts on Ethereum-based apps. The syntax of Solidity is similar to C and Javascript, so developers who already know those languages can quickly learn Solidity. Compared to other languages, Solidity offers multiple benefits, such as:</p>
<ul>
<li>Statically typed programming</li>
<li>Accessibility to JavaScript debuggers, infrastructures, and other tools</li>
<li>Preciseness</li>
</ul>
<p>With Solidity, developers can craft applications with self-enforcing business logic in smart contracts, creating a non-repeatable record of transactions. Solidity also supports libraries, a complex user-defined type, and inheritance. Thus, it&rsquo;s a good choice for creating contracts for crowdfunding, voting, multi-signature wallets, and blind auctions.</p>
<p>Solidity developers are usually responsible for:</p>
<ul>
<li>Integrating Solidity code across various platforms</li>
<li>Managing the full lifecycle of blockchain development</li>
<li>Ensuring blockchain integration with existing applications</li>
<li>Building smart contracts and ensuring that all timelines and expectations are met for finished smart contracts</li>
<li>Reviewing smart contracts for security and functionality</li>
<li>Supervising web services that use blockchain technology</li>
<li>Collaborating with multidisciplinary teams and product managers to discover new ideas for smart contract development</li>
<li>Assessing technical reviews of proposed solutions</li>
<li>Analyzing usage and transaction statistics to pinpoint and prioritize areas for improvement</li>
</ul>
<p>Besides having a deep knowledge of Solidity and blockchains, Solidity developers should also have the following hard skills:</p>
<ul>
<li>Blockchain technology, especially Ethereum blockchain</li>
<li>Strong background in Javascript, C, C++</li>
<li>Knowledge of AngularJS, React JS, and Ember JS</li>
<li>Portfolio experience with Ethereum testnet and mainnet</li>
<li>CSS/HTML/JS/React for application binary interface (ABI) integration</li>
<li>Experience with RESTful APIs</li>
<li>Experience with staking protocol implementation for liquidity pair and single-token staking</li>
<li>Familiar with different ways to deploy smart contracts, such as Remix, Truffle suite, and Hardhat</li>
<li>Experienced in staking implementing and test-driven development (TDD)</li>
<li>Knowledge of libraries, data structures, blockchain architecture, web development, and smart contracts</li>
</ul>
<h3 id="smart-contract-developer"><strong>Smart Contract Developer</strong></h3>
<p>According to <a href="https://www.glassdoor.ca/Salaries/san-francisco-smart-contract-developer-salary-SRCH_IL.0,13_IM759_KO14,38.htm?clickSource=searchBtn">Glassdoor</a>, the average annual salary of a smart contract developer in San Francisco, CA, is $94,674 with an average additional cash compensation of $20,950.</p>
<p>As their name suggests, smart contract developers are responsible for developing smart contracts for blockchain platforms. They use various programming languages, such as Solidity and Vyper, to create smart contracts, which, as we covered above, are blockchain programs that automatically run when conditions are met.</p>
<p><img src="https://assets-global.website-files.com/60f5b6738a95b57fe76faba5/62bb49ce59a5e780a8dcfe2d_Hire%20Web3%20Developers%20Salary%2C%20Skills%20and%20More.webp" alt=""></p>
<p>Unlike blockchain software developers who create dApps as well as smart contracts, smart contract developers are only responsible for designing and building smart contracts architecture and related tasks. As such, they have fewer responsibilities and lower salaries.</p>
<p>Here&rsquo;s what they&rsquo;re typically responsible for:</p>
<ul>
<li>Designing, building, and deploying smart contracts architecture, yield pools, incentive structures, and strategies</li>
<li>Working with smart contract auditors and the rest of your IT team to implement fixes</li>
<li>Create, implement, and test smart contract additions and upgrades</li>
<li>Explore and research smart contract design implications</li>
</ul>
<p>Most companies require smart contract developers to have the following hard skills:</p>
<ul>
<li>Over four years of full-stack web development (client-facing apps and APIs)</li>
<li>Programming languages such as Solidity, NodeJS, and JavaScript</li>
<li>Cryptography</li>
<li>Experience in creating, developing, deploying, and testing smart contracts for all four blockchain architectural types</li>
<li>Experience with patterns that will make their Solidity code more readable and improve performance, such as:</li>
</ul>
<ol>
<li>Oracles</li>
<li>Pull over Push</li>
<li>Eternal Storage</li>
<li>Tight Variable Packing</li>
<li>Guard Check</li>
<li>Emergency Stop</li>
</ol>
<ul>
<li>The ability to write secure code that prevents threat actors from taking over contracts</li>
<li>Optimization of smart contracts</li>
<li>User experience (UX)</li>
</ul>
<h3 id="rust-developer"><strong>Rust Developer</strong></h3>
<p>There&rsquo;s a lot of variation in the salaries of Rust developers.</p>
<p>According to <a href="https://www.ziprecruiter.com/Salaries/Rust-Developer-Salary">ZipRecruiter</a>, the average Rust developer earns $91,709 per year or $44 per hour. However, in certain major cities, the average salary of Rust developers is higher. For instance, the annual average salary of a rust developer in San Francisco, CA, is <a href="https://www.glassdoor.ca/Salaries/san-francisco-rust-developer-salary-SRCH_IL.0,13_IM759_KO14,28.htm?clickSource=searchBtn">$106,131</a> with an average additional cash compensation of $11,867.</p>
<p>Rust developers are responsible for coding and developing web browsers, blockchain platforms and projects, servers and systems software, and operating systems in the Rust programming language. They may also be responsible for testing, debugging, and ensuring the security and safety of the systems, software, and platforms they develop.</p>
<p>Additional duties may include:</p>
<ul>
<li>Collaborating with customers, management, and relevant departments to pinpoint end-user specifications and requirements</li>
<li>Analyzing user feedback to boost software performance</li>
<li>Creating technical documentation</li>
</ul>
<p>Like Solidity, Rust is a popular language that has a wide range of Web3 applications. It&rsquo;s particularly popular due to its use in the Solana blockchain, a potential competitor to Ethereum as the leading platform for dApps. As of March 2022, Solana is currently ranked ninth in market value on <a href="https://coinmarketcap.com/">CoinMarketCap</a>, making it the highest-ranked blockchain platform that uses Rust.</p>
<p>Most companies require Rust developers to have the following skills:</p>
<ul>
<li>C++, since the Rust language is similar to it</li>
<li>Other programming languages such as Golang, Python, Java, Node.js, and React.js</li>
<li>Knowledge and experience with secure coding practices</li>
<li>Experience with network programming skills and multi-threaded programming</li>
<li>Familiarity with <a href="https://solana-labs.github.io/solana-web3.js/">solana-web3.js</a>, Solana&rsquo;s official SDK (Rust developers use this SDK to develop Solana dApps)</li>
<li>The ability to create and launch Programs, which are the Solana equivalent of smart contracts</li>
<li>Experience with specific operating systems such as Android or Linux</li>
<li>Experience with certain databases, such as MongoDB and Apache CouchDB</li>
</ul>
<p>Many organizations also prefer to hire Rust programmers who have at least three to five years of Rust coding experience since it&rsquo;s a difficult language to master.</p>
<p>According to the <a href="https://blog.rust-lang.org/2020/04/17/Rust-survey-2019.html">Rust Survey of 2019</a>, most Rust programmers rated their expertise as 7 out of 10 or below, even though over 68% of them wrote Rust code weekly. Additionally, 22% of Rust users indicated that they didn&rsquo;t feel productive while coding Rust and the steep learning curve was the second most common reason for not using Rust on some projects.</p>
<p>As such, it&rsquo;s important to get a good idea of how familiar and comfortable your potential hire is at Rust. Give them a few test assignments and make sure that they know how to create, test, and debug the programs and apps you want them to create.</p>
<h2 id="where-to-find-web3-developers"><strong>Where to Find Web3 Developers</strong></h2>
<p>Whether you&rsquo;re looking to <strong>hire Web3 developers</strong> for a long-term project or a small gig, knowing where you can find the best talent for this specific set of skills can substantially cut down your search time.</p>
<p>Web3, like cryptocurrency in its early days, is driving impressive innovation. It&rsquo;s an excellent opportunity to be a part of the blockchain ecosystem and help formulate the future of the web.</p>
<p>Unless you live in a tech hub where you can find talent locally, it&rsquo;s probably easiest to hire remote developers. Here are the best places to find these developers and Web3 engineers:</p>
<h3 id="crypto-job-boards"><strong>Crypto Job Boards</strong></h3>
<p>Even while talking about something as cutting edge as Web3, you may find the age-old approach of searching job boards to be quite convenient. However, you&rsquo;ll want to choose a job board that&rsquo;s known for harboring blockchain and crypto developers.</p>
<p>There are several recruitment websites that focus solely on crypto-related jobs. You can increase your chances of finding the right person by posting the position on more than one of these platforms.</p>
<p>Some of the most popular online crypto job boards include <a href="https://cryptojobslist.com/">Crypto Jobs List</a>, <a href="https://crypto.jobs/">CryptoJobs</a>, and <a href="https://angel.co/jobs">Angel</a>. Other more general job sites include <a href="https://www.indeed.com/">Indeed</a> and <a href="https://remote.co/">Remote.co</a>.</p>
<h3 id="linkedin"><strong>LinkedIn</strong></h3>
<p>LinkedIn is another online job board, but it&rsquo;s also a social media platform. Many startups begin their talent scouting here.</p>
<p>Not only do you have the opportunity to post <strong>Web3 development jobs</strong> on LinkedIn, but you can also search for professionals with experience by viewing the profiles of prospective employees. Profiles present workers&rsquo; skills, experience, and education, and if you like someone, you can communicate with them directly on the website or app.</p>
<p>While LinkedIn is an excellent place to find a developer, it also provides a great platform for promoting your business, especially if you&rsquo;re looking for financing. It offers opportunities to show off the talent you hire as well, to make your venture appear even more valuable.</p>
<h3 id="talent-marketplaces"><strong>Talent Marketplaces</strong></h3>
<p>Online talent marketplaces are another viable option when searching for Web3 developers. These usually have both remote workers and freelancers, so you&rsquo;ll first need to figure out exactly the kind of worker you need.</p>
<p>Do you want a permanent member of the team? Do you want a contractual freelancer? These are serious considerations. For example, for long-haul collaboration, you&rsquo;d likely want the developer to be an employee of the company.</p>
<p>There&rsquo;s nothing wrong with going with a freelance developer, provided this kind of relationship meets your needs and you can find someone suitable. But if you&rsquo;re looking to embed developers in your team and hire them permanently, Revelo is an excellent place to start. You&rsquo;ll be connected with top-notch remote talent specializing in Web3 engineering or development, or whatever technology you need to grow your business.</p>
<p>One of the most significant benefits of using Revelo is that the developers are pre-screened, so the skills and experience they list on their profile are what you&rsquo;ll get. Therefore, there&rsquo;s no need to confirm their experience — you can just move along with the interviewing process.</p>
<h2 id="how-to-hire-web3-developers"><strong>How to Hire Web3 Developers</strong></h2>
<p>You probably don&rsquo;t want to spend endless hours reviewing resume after resume and conducting dozens of interviews. At the same time, you also don&rsquo;t want to miss out on good talent by overlooking their applications.</p>
<p>To help you pick out the best from the rest, here are some examples of job postings and some guidelines for the interviews themselves.</p>
<p>If you find hiring daunting, don&rsquo;t worry — hiring developers doesn&rsquo;t require the formal interviews, group discussions, or IQ tests that many big corporations use. If you&rsquo;re all for decentralization anyway, you might as well do things a little differently than more centralized corporations.</p>
<h3 id="web3-developer-job-post-example"><strong>Web3 Developer Job Post Example</strong></h3>
<p>The first thing you need to nail is the job post itself. Whether you choose to go with a job board, LinkedIn, or a talent marketplace, you&rsquo;ll need to define the position you&rsquo;re offering.</p>
<p>This is important because, believe it or not, many recruiters and contractors end up using the wrong terms in their posts or adding too much detail. This can cause candidates to overlook the most important requirements of the position. In these cases, you&rsquo;ll end up with irrelevant resumes and often too many of them to sift through.</p>
<p>When you&rsquo;re looking to <strong>hire Web3 developers</strong>, the post should be direct. It should address that you&rsquo;re looking for a blockchain developer who specializes in Web3 development and has the right tech stack to support it.</p>
<p>Ideally, you would want people with experience working with blockchain to apply. So, make a list of the relevant keywords to put in your post. Those keywords will also help the post rank better on search engines, so anyone who types those keywords will see your job posting.</p>
<p>To help you write an immaculate job post to <strong>hire Web3 programmer</strong>, here is an example:</p>
<p><em>&ldquo;We are looking for a passionate and experienced Web3 developer to help us build our project XYZ.</em></p>
<p><em>Our ideal candidate is someone with experience developing blockchain-based applications, especially those for Web3 (dApps). They should be aware of and use the latest technologies in crypto, blockchain, and Web3 development. With collaborative energy and willingness to learn, the right candidate will readily communicate with and assist other team members on the project.</em></p>
<p><em>Necessary Qualifications:</em></p>
<ul>
<li><em>Experience with blockchain development</em></li>
<li><em>Experience with Solidity and dApp development</em></li>
<li><em>Basic knowledge of front-end development of dApps to bridge the gap between the complex blockchain and usable Web 2.0–based interface</em></li>
<li><em>Ability to work remotely and collaborate with the team when necessary</em></li>
</ul>
<p><em>Responsibilities</em></p>
<ul>
<li><em>Help create scalable applications with Ethereum blockchain</em></li>
<li><em>Analyze and solve problems in the development phase</em></li>
<li><em>Communicate and collaborate with back-end and front-end teams</em></li>
<li><em>Develop and optimize smart contracts</em></li>
<li><em>Help document the development process of the blockchain and dApps</em></li>
<li><em>Optimize development and implementation</em></li>
<li><em>Adopt best practices for Web3 and blockchain development&rdquo;</em></li>
</ul>
<p>You can follow this layout or create your own based on this sample structure:</p>
<p>Begin by briefly introducing your company or the idea of the project without giving too much away, especially if you&rsquo;ve come up with a new idea.</p>
<p>Then, talk about what the ideal candidate should have, including the desired skills and qualifications. Don&rsquo;t be too general with these but try to be straightforward. Keep in mind that Web3 is relatively new, so asking for 5 or 10 years of specific experience may be unreasonable and limit who applies. This could cause you to miss out on exceptionally qualified candidates.</p>
<p>Consider adding a pay rate or range in the job posting. This transparency will ensure that neither you nor the candidates waste time with interviews or application materials if your expectations are drastically different.</p>
<p>Lastly, list the responsibilities that the developer will have. Include both technical and non-technical responsibilities that you&rsquo;ll expect of a new hire.</p>
<p>Remember that a clearer job description will attract more relevant applicants.</p>
<h3 id="web3-developer-interviews"><strong>Web3 Developer Interviews</strong></h3>
<p>Once you have shortlisted the candidates, you can begin setting up interviews. You already established during your initial review that they meet the requirements you defined in the job post. Now, it&rsquo;s time to get to know them a bit better.</p>
<p>You&rsquo;ll most likely be conducting the interview remotely via a web meeting tool, like Zoom.</p>
<p>It&rsquo;s always a good idea to formulate your interview questions beforehand. You should write down your most significant concerns with hiring Web3 engineers and keep each candidate&rsquo;s resume handy either in paper format or on your computer screen.</p>
<p>Ask them how they plan on working remotely, especially if they are located in a different region with a significant time zone difference. Discuss the communication tools and methods of your team and whether they have any experience with those.</p>
<p>Make sure to formulate these discussions and concerns into a set of questions and create a smooth flow. For example, consider dividing the interview into technical and non-technical sections. However, it&rsquo;s not necessary to stick to your script. If you think of something during the interview, you can go ahead and ask and come back to your pre-written questions after.</p>
<p>Lastly, discuss their salary or pay expectations. Do they prefer to be paid hourly, annually, or by the project?</p>
<p>Here are some sample questions you can use in your interviews:</p>
<ul>
<li>How do you think Web3 is different from the previous versions of the web?</li>
<li>What blockchain projects have you been part of? What was your role?</li>
<li>What Web3 development tools and technology have you used before?</li>
<li>What coding languages are you experienced in?</li>
<li>How do you respond to feedback from other team members?</li>
<li>What testing methods do you use for your code?</li>
<li>What is your preferred mode of communication?</li>
</ul>
<p>Don&rsquo;t forget to keep the mood light and friendly!</p>
<p><strong>Related:</strong> <a href="https://www.revelo.com/blog/outsourcing-software-development-to-bolivia"><strong>Outsourcing Software Development to Bolivia: Why You Should Hire Bolivian Developers</strong></a></p>
<h3 id="web3-coding-challenges"><strong>Web3 Coding Challenges</strong></h3>
<p>No matter how well the interview went and how experienced the candidate claims to be, it all comes down to their skill.</p>
<p>To measure and confirm their level of knowledge and experience in <strong>Web3 development</strong>, you should conduct several small coding challenges. These can be presented to the candidates in written form or as video presentations to explain the purpose of the assignment. The task shouldn&rsquo;t be longer than an hour unless you plan to pay them for their time.</p>
<p>If you&rsquo;re hiring a developer to carry out different coding tasks, you should create different coding challenges, each dealing with a specific need of your project — for example, creating nodes, writing smart contracts, or developing the front end of a Web3 application.</p>
<p>Another popular approach to coding challenges is pair programming. In these tests, two developers work together on a problem, either in person or remotely. This is a great way to test their technical skills and their team and communication skills. The code wouldn&rsquo;t be written by both of the developers, however. One would formulate the code or define the approach, while the other would actually write it. You can reverse the roles for a second test.</p>
<p>Here are some tips for developing coding challenges:</p>
<ul>
<li><strong>Utilize problems related to your project.</strong> You want to see the developers working in the context of your application. You should take a problem related to your project and present it as a challenge to see how the candidate might benefit your team.</li>
<li><strong>Focus on the process, not the result.</strong> When examining the coding challenge results, don&rsquo;t just look at whether they solved the problem. Even if they didn&rsquo;t quite find the solution, their results can help you get to know how they work and whether they have the potential to learn more.</li>
<li><strong>Use the same challenge.</strong> For a single job posting, use the same coding challenge to see how different candidates compare. However, don&rsquo;t reuse the test once you&rsquo;ve hired someone successfully.</li>
<li><strong>Create from scratch.</strong> It&rsquo;s best to create the challenge yourself, using a real problem related to your project. Pre-designed coding tests may not provide the best outcome, and many times the solutions have been published online, which defeats the purpose of testing. If you&rsquo;re not a developer yourself, consider asking your current developers, especially those responsible for testing, to create these tests for you.</li>
</ul>
<h2 id="conclusion"><strong>Conclusion</strong></h2>
<p><strong>Hiring Web3 developers</strong> is not difficult if you search in the right places, conduct the interviews effectively, and design a solid coding test. Even if you believe a candidate is not seasoned, you can always train them. However, they should have the drive to learn more.</p>
<p>Revelo can solve your talent hunting issues by presenting some of the best developers from Latin America to become an integral part of your team and take your Web3 project to the next level. <a href="https://www.revelo.com/hire">Contact us</a> and get matched with vetted developers within 3 days.</p>
<p><strong>SOURCE:</strong> <a href="https://www.revelo.com/blog/hire-web3-developers#toc-what-is-web3-"><strong>REVELO</strong></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/629e4c88792d375fdca6d6a4_5-hire-web3-developers_-everything-you-need-to-know-to-find-top-web3-engineers.webp" medium="image"/></item><item><title>An Introduction in Blockchain, Cryptocurrencies, Tokens, Smart Contracts</title><link>https://ajulu.netlify.app/posts/an-introduction-in-blockchain-cryptocurrencies-tokens-smart-contracts-nfts-web3-defi-gamefi-and-dein-crash-course/</link><pubDate>Sun, 21 Aug 2022 18:20:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/an-introduction-in-blockchain-cryptocurrencies-tokens-smart-contracts-nfts-web3-defi-gamefi-and-dein-crash-course/</guid><description>&lt;p&gt;Hello there, today I&amp;rsquo;ll be covering definitions:&lt;/p&gt;
&lt;h2 id="what-is-blockchain"&gt;What is blockchain?&lt;/h2&gt;
&lt;p&gt;A &lt;strong&gt;blockchain&lt;/strong&gt; is a growing list of records, called &lt;em&gt;blocks&lt;/em&gt;, that are linked together using &lt;a href="https://en.wikipedia.org/wiki/Cryptography" title="Cryptography"&gt;cryptography&lt;/a&gt;. Each block contains a &lt;a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function" title="Cryptographic hash function"&gt;cryptographic hash&lt;/a&gt; of the previous block, a &lt;a href="https://en.wikipedia.org/wiki/Trusted_timestamping" title="Trusted timestamping"&gt;timestamp&lt;/a&gt;, and transaction data (generally represented as a &lt;a href="https://en.wikipedia.org/wiki/Merkle_tree" title="Merkle tree"&gt;Merkle tree&lt;/a&gt;). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hello there, today I&rsquo;ll be covering definitions:</p>
<h2 id="what-is-blockchain">What is blockchain?</h2>
<p>A <strong>blockchain</strong> is a growing list of records, called <em>blocks</em>, that are linked together using <a href="https://en.wikipedia.org/wiki/Cryptography" title="Cryptography">cryptography</a>. Each block contains a <a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function" title="Cryptographic hash function">cryptographic hash</a> of the previous block, a <a href="https://en.wikipedia.org/wiki/Trusted_timestamping" title="Trusted timestamping">timestamp</a>, and transaction data (generally represented as a <a href="https://en.wikipedia.org/wiki/Merkle_tree" title="Merkle tree">Merkle tree</a>). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks.</p>
<p><a href="https://stephenajulu.com/blog/what-is-blockchain-how-does-it-work-blockchain-explained/"><strong>Learn more</strong></a></p>
<h2 id="what-is-a-cryptocurrency">What is a cryptocurrency?</h2>
<p>A <strong>cryptocurrency</strong> is any form of currency that exists digitally or virtually and uses cryptography to secure transactions. Cryptocurrencies don’t have a central issuing or regulating authority, instead, they use a decentralized system to record transactions and issue new units.</p>
<p><a href="https://stephenajulu.com/blog/how-to-buy-your-first-cryptocurrency/"><strong>Here is how you can buy your first cryptocurrency</strong></a></p>
<h2 id="what-are-crypto-tokens">What Are Crypto Tokens?</h2>
<p>The term token refers to a special virtual currency token or how cryptocurrencies are denominated. These tokens represent fungible and tradable assets or utilities that reside on their own <a href="https://stephenajulu.com/blog/what-is-blockchain-how-does-it-work-blockchain-explained/">blockchains</a>. Crypto tokens are often used to fundraise for crowd sales, but they can also serve as a substitute for other things. These tokens are usually created, distributed, sold, and circulated through the standard <a href="https://www.investopedia.com/terms/i/initial-coin-offering-ico.asp">initial coin offering (ICO)</a> process, which involves a crowdfunding exercise to fund project development.</p>
<h2 id="what-is-a-smart-contract">What is a smart contract?</h2>
<p>A <strong>smart contract</strong> is a <a href="https://en.wikipedia.org/wiki/Computer_program" title="Computer program">computer program</a> or a <a href="https://en.wikipedia.org/wiki/Transaction_Protocol_Data_Unit" title="Transaction Protocol Data Unit">transaction protocol</a> that is intended to automatically execute, control, or document legally relevant events and actions according to the terms of a <a href="https://en.wikipedia.org/wiki/Contract" title="Contract">contract</a> or an agreement. The objectives of smart contracts are the reduction of the need for trusted intermediates, arbitrations, and enforcement costs, fraud losses, as well as the reduction of malicious and accidental exceptions.</p>
<p><a href="https://stephenajulu.com/blog/what-are-smart-contracts-smart-contracts-explained/"><strong>Learn more.</strong></a></p>
<h2 id="what-is-an-nft">What is an NFT?</h2>
<p>A <strong>non-fungible token</strong> (<strong>NFT</strong>) is a unique and non-interchangeable unit of data stored on a digital <a href="https://en.wikipedia.org/wiki/Ledger" title="Ledger">ledger</a> (<a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchain</a>). NFTs can be associated with reproducible digital files such as photos, videos, and audio. NFTs use a digital ledger to provide a public <a href="https://en.wikipedia.org/wiki/Certificate_of_authenticity" title="Certificate of authenticity">certificate of authenticity</a> or <a href="https://en.wikipedia.org/wiki/Title_(property)" title="Title (property)">proof of ownership</a>, but it does not restrict the sharing or copying of the underlying digital file. The lack of interchangeability (<a href="https://en.wikipedia.org/wiki/Fungibility" title="Fungibility">fungibility</a>) distinguishes NFTs from blockchain <a href="https://en.wikipedia.org/wiki/Cryptocurrencies" title="Cryptocurrencies">cryptocurrencies</a>, such as <a href="https://en.wikipedia.org/wiki/Bitcoin" title="Bitcoin">Bitcoin</a>.</p>
<p><a href="https://stephenajulu.com/blog/what-are-nfts-non-fungible-tokens-explained/"><strong>Learn more.</strong></a></p>
<h2 id="what-is-web-3">What is Web 3?</h2>
<p><strong>Web3,</strong> also known as <strong>Web 3.0</strong>, is an idea for a new iteration of the <a href="https://en.wikipedia.org/wiki/Internet" title="Internet">Internet</a> that is based on public <a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchains</a>. The term was coined in 2014 by <a href="https://en.wikipedia.org/wiki/Ethereum" title="Ethereum">Ethereum</a> co-founder <a href="https://en.wikipedia.org/wiki/Gavin_Wood" title="Gavin Wood">Gavin Wood</a>, and the idea gained interest in 2020 and 2021 from <a href="https://en.wikipedia.org/wiki/Cryptocurrency" title="Cryptocurrency">cryptocurrency</a> enthusiasts, large technology companies, and venture capitalist firms.</p>
<p><a href="https://stephenajulu.com/blog/web-3.0-explained-part-1/"><strong>Learn more.</strong></a></p>
<h2 id="what-is-defi">What is DeFi?</h2>
<p><strong>Decentralized finance</strong> (commonly referred to as <strong>DeFi</strong>) is a <a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchain</a>-based form of finance that does not rely on central financial <a href="https://en.wikipedia.org/wiki/Intermediary" title="Intermediary">intermediaries</a> such as <a href="https://en.wikipedia.org/wiki/Brokerage" title="Brokerage">brokerages</a>, <a href="https://en.wikipedia.org/wiki/Exchange_(organized_market)" title="Exchange (organized market)">exchanges</a>, or <a href="https://en.wikipedia.org/wiki/Bank" title="Bank">banks</a> to offer traditional <a href="https://en.wikipedia.org/wiki/Financial_instrument" title="Financial instrument">financial instruments</a>, and instead utilizes <a href="https://en.wikipedia.org/wiki/Smart_contract" title="Smart contract">smart contracts</a> on blockchains, the most common being <a href="https://en.wikipedia.org/wiki/Ethereum" title="Ethereum">Ethereum</a>.[<a href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><em>citation needed</em></a>] DeFi platforms allow people to lend or borrow funds from others, speculate on price movements on a range of assets using derivatives, trade <a href="https://en.wikipedia.org/wiki/Cryptocurrencies" title="Cryptocurrencies">cryptocurrencies</a>, insure against risks, and earn <a href="https://en.wikipedia.org/wiki/Interest" title="Interest">interest</a> in savings-like accounts. DeFi uses a layered architecture and highly composable building blocks.</p>
<p><a href="https://stephenajulu.com/blog/decentralized-finance-defined/"><strong>Learn more.</strong></a></p>
<h2 id="what-is-gamefi">What is GameFi?</h2>
<p><strong>GameFi</strong> also known as Game Finance, is the gamification of financial systems to create profit from playing play-to-earn crypto games.</p>
<p><a href="https://stephenajulu.com/blog/gamers-assemble-play-games-to-earn-free-crypto/"><strong>Learn more.</strong></a></p>
<h2 id="what-is-dein">What is DeIn?</h2>
<p>Decentralized Insurance also known as DeIn or DeFi Insurance is where rather than purchasing insurance coverage from one specific individual or company, you can purchase coverage from a decentralized pool of insurance providers. Interestingly, any individual or company can work as an insurance provider by locking up capital in the decentralized capital pool. The individual or company providing capital to the pool can qualify as a <a href="https://101blockchains.com/how-liquidity-provider-tokens-work/">liquidity provider</a>.</p>
<p><a href="https://stephenajulu.com/blog/decentralized-insurance-built-on-the-blockchain-is-a-game-changer/"><strong>Learn more.</strong></a></p>
<h3 id="conclusion">Conclusion</h3>
<p>I am a follower of the above simply because of how much disruption of traditional methods blockchain can create. In one way or the other blockchain technology is the future of processing. Currently, as of writing this post, there are Decentralized Supply Chain Management, Decentralized Full Proof Voting, Decentralized Real Estate, Decentralized Data Protection, and Decentralized Loyalty + Royalty Programs.</p>
<p><strong>Learn more here:</strong> <a href="https://stephenajulu.com/blog/the-importance-and-benefits-of-blockchain-technology/"><strong>The Importance and Benefits of Blockchain Technology</strong></a></p>
<p>Blockchain <strong>increases trust, security, transparency, and the traceability of data shared across a business network</strong> — and delivers cost savings with new efficiencies. Blockchain for business uses a shared and immutable ledger that can only be accessed by members with permission.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/1644357966865.webp" medium="image"/></item><item><title>The Testosterone Pandemic</title><link>https://ajulu.netlify.app/posts/the-testosterone-pandemic/</link><pubDate>Tue, 16 Aug 2022 21:32:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-testosterone-pandemic/</guid><description>&lt;p&gt;Testosterone has been dropping each year by 1% since 1950.&lt;/p&gt;
&lt;p&gt;Men are becoming less manly, not only in behavior and appearance but also in their biological makeup.&lt;/p&gt;
&lt;p&gt;In men, testosterone helps maintain and develop:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sexual features&lt;/li&gt;
&lt;li&gt;Muscle mass&lt;/li&gt;
&lt;li&gt;Adequate levels of red blood cells&lt;/li&gt;
&lt;li&gt;Bone density&lt;/li&gt;
&lt;li&gt;Sense of well-being&lt;/li&gt;
&lt;li&gt;Sexual and reproductive function&lt;/li&gt;
&lt;li&gt;Peak mental function(memory, problem-solving and critical thinking)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="signs-symptoms-and-effects-of-low-testosterone"&gt;Signs, Symptoms, and Effects of Low Testosterone&lt;/h2&gt;
&lt;h3 id="signs-and-symptoms-of-low-testosterone"&gt;Signs and Symptoms of Low Testosterone&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Low sex drive&lt;/li&gt;
&lt;li&gt;Erectile dysfunction(difficulty achieving and maintaining an erection)&lt;/li&gt;
&lt;li&gt;Decreased sense of well-being&lt;/li&gt;
&lt;li&gt;Depressed mood and suicidal thoughts&lt;/li&gt;
&lt;li&gt;Difficulties with concentration and memory&lt;/li&gt;
&lt;li&gt;Fatigue&lt;/li&gt;
&lt;li&gt;Moodiness and irritability&lt;/li&gt;
&lt;li&gt;Loss of muscular strength&lt;/li&gt;
&lt;li&gt;A decrease in hemoglobin and mild anemia&lt;/li&gt;
&lt;li&gt;A decrease in body hair and hair loss&lt;/li&gt;
&lt;li&gt;Thinning of the bones (osteoporosis)&lt;/li&gt;
&lt;li&gt;Increased body fat&lt;/li&gt;
&lt;li&gt;Breast development (gynecomastia)&lt;/li&gt;
&lt;li&gt;Infertility&lt;/li&gt;
&lt;li&gt;A decrease in critical thinking and problem-solving&lt;/li&gt;
&lt;li&gt;Docile behavior&lt;/li&gt;
&lt;li&gt;Smaller penis and testicles&lt;/li&gt;
&lt;li&gt;Sleep disturbances and even sleep apnea&lt;/li&gt;
&lt;li&gt;Low ambition and desire to succeed&lt;/li&gt;
&lt;li&gt;Weakness&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="how-to-increase-testosterone-and-get-your-life-back"&gt;How To Increase Testosterone And Get Your Life Back&lt;/h2&gt;
&lt;h3 id="food"&gt;Food&lt;/h3&gt;
&lt;p&gt;Avoid processed, prepackaged, and non-organic foods as they lack necessary micronutrients and often contain a plethora of harmful chemicals that severely inhibit testosterone production.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Testosterone has been dropping each year by 1% since 1950.</p>
<p>Men are becoming less manly, not only in behavior and appearance but also in their biological makeup.</p>
<p>In men, testosterone helps maintain and develop:</p>
<ul>
<li>Sexual features</li>
<li>Muscle mass</li>
<li>Adequate levels of red blood cells</li>
<li>Bone density</li>
<li>Sense of well-being</li>
<li>Sexual and reproductive function</li>
<li>Peak mental function(memory, problem-solving and critical thinking)</li>
</ul>
<h2 id="signs-symptoms-and-effects-of-low-testosterone">Signs, Symptoms, and Effects of Low Testosterone</h2>
<h3 id="signs-and-symptoms-of-low-testosterone">Signs and Symptoms of Low Testosterone</h3>
<ul>
<li>Low sex drive</li>
<li>Erectile dysfunction(difficulty achieving and maintaining an erection)</li>
<li>Decreased sense of well-being</li>
<li>Depressed mood and suicidal thoughts</li>
<li>Difficulties with concentration and memory</li>
<li>Fatigue</li>
<li>Moodiness and irritability</li>
<li>Loss of muscular strength</li>
<li>A decrease in hemoglobin and mild anemia</li>
<li>A decrease in body hair and hair loss</li>
<li>Thinning of the bones (osteoporosis)</li>
<li>Increased body fat</li>
<li>Breast development (gynecomastia)</li>
<li>Infertility</li>
<li>A decrease in critical thinking and problem-solving</li>
<li>Docile behavior</li>
<li>Smaller penis and testicles</li>
<li>Sleep disturbances and even sleep apnea</li>
<li>Low ambition and desire to succeed</li>
<li>Weakness</li>
</ul>
<h2 id="how-to-increase-testosterone-and-get-your-life-back">How To Increase Testosterone And Get Your Life Back</h2>
<h3 id="food">Food</h3>
<p>Avoid processed, prepackaged, and non-organic foods as they lack necessary micronutrients and often contain a plethora of harmful chemicals that severely inhibit testosterone production.</p>
<p>Instead, opt for healthier and organic foods i.e eggs, fish, fatty beef, cruciferous vegetables, pomegranate, shellfish, and oysters. Increase intake of Vitamin D(sun), Vitamin C, and Magnesium as these can help reverse the detrimental decrease of testosterone in men.</p>
<p>Also, note that testosterone production decreases significantly after eating. Hence constant snacking is bad for testosterone.</p>
<p>Obesity leads to low testosterone as fat cells metabolize testosterone into estrogen. Obese men also have low levels of SHGB(Sex Hormone Binding Globin) which is a compound responsible for transporting testosterone in the bloodstream.</p>
<h3 id="sleep">Sleep</h3>
<p>Several studies continue to show that good regular sleep of 8 hours can increase testosterone production by almost 60% in men especially if done in routine(same times). Human Growth Hormone has also been shown to increase during good REM sleep which also helps boost testosterone.</p>
<h3 id="plasticsmicroplastics-found-in-food">Plastics(+microplastics found in food)</h3>
<p>Plastics often contain xenoestrogens. Xenoestrogens are everywhere, they can be found in food coloring, furniture, industrial products, plastic tubing, clothing, and personal grooming products(more on this can be found here: <a href="https://stephenajulu.com/blog/endocrine-hormonal-disruptors-in-grooming-products-and-cosmetics/">Endocrine(Hormonal) Disruptors in Grooming Products and Cosmetics</a>).</p>
<p>The list is endless.</p>
<p>Xenoestrogens work by mimicking estrogen in the body of males similar to how your body is producing more estrogen than necessary. When more estrogen is produced and found in your body, your brain shuts down testosterone production and halts spermatogenesis(the art at which the male body creates sperms).</p>
<p>This not only decreases testosterone but also causes inflammation of the muscles and joints. These xenoestrogens together with the estrogen your body produces also cause you to gain fat further promoting the vicious cycle with no end.</p>
<p>The sad truth is estrogen is replacing testosterone in many men and the effects are dire!</p>
<p>But they don&rsquo;t have to.</p>
<p>You can choose to negate these effects by drinking out of metal and glass containers.</p>
<p>You can also avoid overly processed foods, plastic-wrapped foods, unhealthy soaps, unhealthy cooking oils(see more here: <a href="https://stephenajulu.com/blog/why-i-advocate-for-saturated-fats-over-vegetable-oils/">Why I Advocate For Saturated Fats Over Vegetable Oils(Updated)</a>), and cosmetics.</p>
<p>Try <a href="https://drsquatch.com/">DR. SQUATCH</a> soap</p>
<p>As said previously, xenoestrogens are everywhere and can cause your libido to plummet, causes birth defects in children, and screws up your overall health.</p>
<p>A recent study showed that we consume the equivalent of one credit card worth of plastic every week! Shocking isn&rsquo;t it?</p>
<p>So if you can AVOID THEM!</p>
<h3 id="exercise-and-fitness">Exercise and Fitness</h3>
<p>Men were made to hunt, gather, and be constantly active.</p>
<p>Instead, lots of men can be seen spending time at a desk docile and then going home only to sit on a couch.</p>
<p>We were not created to eat, sleep, sit, and text. We were created for more.</p>
<p>On the bright side, exercise is not hard to start. It can simply be a walk and if you are like me, it can be lifting heavy shit or spending hours at the gym lifting weights.</p>
<p>Lifting weights has been shown to especially boost testosterone in men by almost 25%.</p>
<p>Though too much cardio can have the opposite effect by actually reducing testosterone. Sprinting however is a good choice as this boosts testosterone.</p>
<h3 id="sex-and-pornography">Sex and Pornography</h3>
<p>Pornography and masturbation have been shown to decrease testosterone.</p>
<p>According to 2 studies, people who stopped masturbating for a week saw a 150% increase in testosterone. So, yea NOFAP works!</p>
<p>Frequent masturbation nulls/dulls androgen receptors in the brain responsible for helping your body use testosterone.</p>
<p>In fact, frequent masturbation enhances estrogen receptors, according to a different study. So keep your hands off yourself!</p>
<p>You&rsquo;ll love this: In a different study, normal sex between a male and a female has been shown to increase testosterone production in men. So keep it up.</p>
<p>Men are becoming weaker and are told being masculine is &ldquo;toxic&rdquo; when on the contrary men are supposed to lead, guide, protect and stand up for what is right. Sadly these men are now rare and hard to find.</p>
<p>Men are nowadays encouraged to bend over to the government, to mandates, to bosses that make them do things that aren&rsquo;t right, aren&rsquo;t what they believe in, or don&rsquo;t want to do.</p>
<p>So stand up for yourself KING.</p>
<p>And if you feel you can&rsquo;t then maybe it&rsquo;s time you start following the things written above and look into ways you can increase your testosterone.</p>
<p>Have a nice one!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/800px-gigachad.webp" medium="image"/></item><item><title>How Shell Is Using Web3 And Blockchain For Sustainability And Energy Transition</title><link>https://ajulu.netlify.app/posts/how-shell-is-using-web3-and-blockchain-for-sustainability-and-energy-transition/</link><pubDate>Fri, 12 Aug 2022 00:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/how-shell-is-using-web3-and-blockchain-for-sustainability-and-energy-transition/</guid><description>&lt;p&gt;Shell is one of the largest energy companies in the world. Although many of us may associate it primarily with oil and gas, it has embarked on an ambitious energy transition agenda in a bid to move away from the use of fossil fuels toward green and sustainable energy.&lt;/p&gt;
&lt;p&gt;This includes targets of reaching net-zero carbon emissions by 2050 or sooner, as well as a more immediate goal of reducing scope one and two emissions by 50 percent by the end of this decade.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Shell is one of the largest energy companies in the world. Although many of us may associate it primarily with oil and gas, it has embarked on an ambitious energy transition agenda in a bid to move away from the use of fossil fuels toward green and sustainable energy.</p>
<p>This includes targets of reaching net-zero carbon emissions by 2050 or sooner, as well as a more immediate goal of reducing scope one and two emissions by 50 percent by the end of this decade.</p>
<p>In order to do this, it is leveraging several new technology trends that are proving themselves to be revolutionary in many industries beyond its own sector. These include artificial intelligence (AI), the internet of things (IoT), and – as we will see in this article – Web3 and blockchain.</p>
<p>Blockchain is best known to most people as the technology that underpins cryptocurrencies like Bitcoin. The simplest way to think of it is that it’s essentially a relatively new form of database format. Blockchains have two key features that make them different from other databases. Firstly, rather than being centrally located on a specific computer or server, they are distributed. This means they are spread across multiple computers, so no one person is in direct, overall control, and all changes have to be validated by consensus.</p>
<p>Secondly, they are encrypted, meaning they are effectively tamper-proof, and only people with permission can add to them or edit the data they contain.</p>
<p>These two features, in combination, make blockchain ideal for applications where data needs to be added, checked, and validated by multiple parties, and security and integrity are of utmost importance. A good demonstration of its robustness can be seen in the fact that the Bitcoin network itself handles <a href="https://explodingtopics.com/blog/blockchain-stats"><strong>270 million transactions</strong></a> every day, is worth (as of writing) around $400 billion, and has remained secure throughout the 13 years of its existence so far.</p>
<p>These features make blockchain an attractive technology for global organizations like Shell, which need hyper-secure, scalable technology solutions to drive a new generation of applications involving collecting and sharing valuable data. Their “trustless” nature improves the current processes used across the industry, helps to reimagine energy value chains via tokenizing energy to create transparency &amp; traceability, and makes new markets and new business models with DEFI / DAO&rsquo;s / NFT&rsquo;s, etc.</p>
<p>Recently, I was joined by Dan Jeavons, VP of Computational Science and Digital Innovation at Shell, as well as Shell’s blockchain lead, Sabine Brink, to discuss some of these projects on my webinar.</p>
<p>Brink tells me, &ldquo;The intersection of digital and energy is one of the most exciting spaces. Looking at how we utilize this technology – web3, a blockchain that accelerates the energy transition. This is an extremely motivating journey to be on.”</p>
<p>This enthusiasm has led to her spending the past five years examining every area of the business where blockchain and related Web3 technologies could be implemented in order to drive sustainability and green energy goals. A number of projects have emerged out of this, and the most promising are now moving into pilot and production stages, where it is hoped their ability to drive real global change will be realized.</p>
<p>In particular, I was interested to hear how the energy giant is using blockchain to trace and verify the provenance of energy created from renewable sources. As the world has come to appreciate the urgent need to transition towards sustainable energy sources, huge rewards – both in terms of financial incentives and customer loyalty – have emerged for organizations that work towards affecting change. The process, however, is often opaque – it’s difficult for customers or partner organizations to really be sure exactly how clean a specific energy source or supplier is.</p>
<p>Jeavons and Brink explained that Shell had developed a blockchain-based system that can demystify the complex web of sources.</p>
<p>He says, “So if you look at the electricity market today, we have energy attribute certificates (EAC) that represent green energy or grey [non-green] energy generated in a given month or year. For companies that aim to run on 100 percent green energy, their monthly or yearly certificates may match their total energy consumption, but when the sun doesn&rsquo;t shine, and the wind does not blow, grey energy is actually being consumed. So it’s hard to claim that they are actually consuming green energy on a 24/7 basis.”</p>
<p>Shell’s solution involves creating highly granular certificates in real-time at the source where the energy is created – which could be solar panels in the desert or wind farms in the ocean - to represent the green energy produced at every half hour, in sync with established energy attribute certificates systems. Every point of that electron’s journey to the point that it is consumed is tracked and recorded on a blockchain.</p>
<p>&ldquo;This is one of those solutions where blockchain creates the transparency and assures us there&rsquo;s no double-counting of electrons in the system; we believe this could be a game-changer,” Jeavons tells me.</p>
<p>Another project which has just made the leap to the <a href="https://www.shell.com/business-customers/aviation/news-and-media-releases/news-and-media-2022/shell-accenture-and-amex-gbt-launch-one-of-the-worlds-first-blockchain-powered-digital-book-and-claim-solutions-for-scaling-sustainable-aviation-fuel-saf.html"><strong>pilot phase</strong></a> is an ambitious venture between Shell, Accenture, and American Express Global Business Travel (Amex GBT) aimed at increasing the availability and use of sustainable aviation fuel (SAF).</p>
<p>Brink says, &ldquo;To me, this is one of the most exciting projects we&rsquo;ve been working on. I’m very proud of the team. It’s one of the first public blockchain solutions that creates a credible and transparent way to help decarbonize the aviation sector. Thanks to its inherent technical features, blockchain offers verifiability, transparency, and security of environmental attributes of SAF.”</p>
<p>The product is Avelia – one of the first blockchain-powered book-and-claim systems which will offer around one million gallons of sustainable aviation fuel (SAF) and associated environmental benefits to corporates looking to reduce emissions from their business travel.</p>
<p>Currently, there is insufficient SAF available at an affordable price. It’s hoped that through aggregating demand for SAF among corporate travelers who form a more concentrated segment than leisure passengers, there will be a reduction in the price – with SAF currently priced significantly higher than equivalent conventional aviation fuels. However, growth in demand for the fuel will theoretically lead to suppliers increasing investment in production and, therefore, an eventual fall in price.</p>
<p>“It’s really hard to decarbonize the aviation sector,” Brink tells me. “Decarbonizing the aviation sector cannot happen overnight. Today we do not have large-scale airplanes that can be powered by green electricity that are able to travel the world. Sustainable aviation fuel is actually a solution – sustainable aviation fuel that we can utilize today and implement with existing infrastructure. With Avelia, we hope to demonstrate that the tracking of SAF data at scale can be delivered in a credible manner, thereby proving to decision-makers that a mechanism for corporations and airlines to book and claim SAF is an acceptable form of emission reduction. In turn, this creates increased demand signals to structurally scale the SAF production required to reduce emissions in aviation.&rdquo;</p>
<p>Other blockchains and digital transformation projects currently undergoing evaluation or pilot status at Shell involve “digital passports” to track the lifecycle of industrial parts, equipment, and machinery at energy plants operated by the company and its partners.</p>
<p>Of course, all of this technology-driven transformation is driven, at its root, by data, and Shell has worked to implement an integrated data platform that aggregates 2.9 trillion rows of information harvested from all areas of its business. This includes IoT sensors installed across its plants and wind and solar farms, ultimately allowing it to create <a href="https://bernardmarr.com/7-amazing-examples-of-digital-twin-technology-in-practice/"><strong>digital twin</strong></a> applications to help it better understand the operation of its assets.</p>
<p>Jeavons says, &ldquo;This is what my team is so excited about – the potential to do this at scale. We&rsquo;re rolling out digital twin … we’re rolling out AI … and when you put that together with traceability, we believe we could bring to market a whole raft of decarbonization solutions … where we could partner with our customers to help them accelerate their own decarbonization journeys. We’re just getting started.”</p>
<p>Source: <a href="https://www.linkedin.com/pulse/how-shell-using-web3-blockchain-sustainability-energy-bernard-marr/">LinkedIn</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/1659425395046.webp" medium="image"/></item><item><title>All About Cryptocurrency Wallets: What They Are, How To Keep Them Safe and</title><link>https://ajulu.netlify.app/posts/all-about-cryptocurrency-wallets-what-they-are-how-to-keep-them-safe-and-web-3-identities/</link><pubDate>Fri, 08 Jul 2022 09:10:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/all-about-cryptocurrency-wallets-what-they-are-how-to-keep-them-safe-and-web-3-identities/</guid><description>&lt;p&gt;You may have heard of digital wallets used to interact with blockchain applications; perhaps you have already used them to make transactions, connect with services, marketplaces, etc. &lt;strong&gt;&lt;em&gt;But do you know how wallets work? What types there are? What are private keys and seed phrases, and why is it critical to keep them secure to protect your assets and your identity on Web3? Are you aware of the most common types of scams that affect wallet users, and do you know how to protect yourself from these scams&lt;/em&gt;&lt;/strong&gt;?&lt;/p&gt;</description><content:encoded><![CDATA[<p>You may have heard of digital wallets used to interact with blockchain applications; perhaps you have already used them to make transactions, connect with services, marketplaces, etc. <strong><em>But do you know how wallets work? What types there are? What are private keys and seed phrases, and why is it critical to keep them secure to protect your assets and your identity on Web3? Are you aware of the most common types of scams that affect wallet users, and do you know how to protect yourself from these scams</em></strong>?</p>
<p>This article answers these questions, with the goal of educating users about one of the most important aspects of Web3 access infrastructure.</p>
<h1 id="wallets-or-keychains">Wallets or keychains?</h1>
<img src="https://miro.medium.com/max/1400/1*z_bALl_urb57HQa0su3FcQ.webp" style="width:100%; height: auto;">
<p>In the context of blockchain and Web3, a “wallet” is essentially a <strong><em>cryptographic key management system</em></strong> that doubles as a <strong><em>user interface</em></strong> allowing you to interact with network applications and services by reading and/or modifying the state of the blockchain. It is in this sense, therefore, that we will use the term “wallet” from now on.</p>
<p>Although the use of the term is already widespread, it is somewhat misleading, and it is worth dispelling a common misunderstanding right away. Contrary to popular belief, when you make a transaction on the blockchain you <strong><em>are not</em></strong> “sending” tokens from your wallet to someone else’s wallet. In fact, you are using your private key to sign a transaction and transmit it to the entire blockchain network. Only after the network validates your transaction will it be executed, and then this change will be reflected in the updated balances of your address and the recipient’s address.</p>
<p>In this sense, the term “wallet” is misleading because the applications we use to interact with the blockchain do <strong><em>not store money</em></strong> the way physical wallets do. Instead, they store the private keys that allow you to sign and make transactions, and the public keys that allow you to receive assets. A more apt analogy would be to a <strong><em>keychain</em></strong>, with the important difference that in the case of the blockchain this “keychain” not only manages the keys needed to interact with the network but also shows the record of transactions and the balances of the addresses associated with these keys.</p>
<p>But what exactly are the “keys” that digital wallets manage, and what are they used for?</p>
<h1 id="keys-and-seed-phrases">Keys and seed phrases</h1>
<p>A “key”, in <a href="https://en.wikipedia.org/wiki/Key_(cryptography)">the sense in which the term is used in cryptography</a>, is the basis of a transformation, usually mathematical, of an ordinary message into an unreadable (encrypted) message.</p>
<p>In <a href="https://networkencyclopedia.com/public-key-cryptography/">public-key cryptography</a>, which is the standard used to implement blockchains, a pair of correlated keys are created for this purpose: the first is called <strong>private</strong> because it must be kept secret; the second is called <strong>public</strong> because it can be shared with anyone who wants to receive it. Any participant that has access to your public key can encrypt a message using that key, but only you can read it, using your private key. In addition, you can use your private key to “digitally sign” a message, allowing others to verify that you were the sender; this verification is also done using your public key.</p>
<img src="https://miro.medium.com/max/758/0*g4IGriCGtFQI25P7" style="width:100%; height: auto;">
<p>Public-key cryptography — Source: <a href="https://networkencyclopedia.com/public-key-cryptography/">Network Encyclopedia</a></p>
<p>A wallet stores and allows you to manage this key pair to interact with a blockchain.</p>
<ul>
<li>A <strong>public key</strong> refers to an address that allows you to send and receive transactions.</li>
<li>A <strong>private key</strong> proves that you own the assets associated with your address.</li>
</ul>
<p>You can think of your public key as analogous to your bank account number, and of your private key as analogous to the password you use to access your account and make transactions. As with banking, your public key can be shared with anyone to receive funds, but your private key, like your password, must be kept secret.</p>
<img src="https://miro.medium.com/max/1400/0*NmmYtBfXbDpn7D04" style="width:100%; height: auto;"> 
<p>Public &amp; Private Keys — Source: Crypto.com</p>
<p>Most modern wallet implementations use a single master key, also known as a <em>seed phrase,</em> to generate the public and private keys. This key generation system is called <strong>deterministic</strong> because in it the public and private keys are correlated and can always be reproduced from the same seed.</p>
<p>Seed phrases are represented as a list of English words (usually 12, sometimes 24) that you can write down and keep somewhere, and can reuse to retrieve your wallet if for some reason you lose access to it (say, by having a device stolen or damaged).</p>
<img src="https://miro.medium.com/max/1400/0*f4sBRgGoSdt8V9ec" style="width:100%; height: auto;">
<p>Example of seed phrases — source: <a href="https://blog.realt.co/seed-phrase-101-56e4c9150c43">Realt Academy</a></p>
<p>There are a set of industry standards for wallet implementations that ensure interoperability between different applications. Thanks to these standards, you can easily export and import your keys between wallets from different vendors.</p>
<h1 id="more-than-keychains--wallets-as-web3-identities">More than keychains — wallets as Web3 identities</h1>
<p>The keychain analogy helps, but it doesn’t catch all the functions of wallets. In a blockchain, nodes are constantly synchronizing the state of the network and updating the history of transactions made. As we saw above, wallets connect you to the blockchain nodes and allow you to read this history and also make transactions, registering new data in the network. In this sense, we can also say that wallets work analogously to a traditional web browser, serving as a gateway to access and interact with Web1 / Web2. Wallets, in turn, are your gateway to Web3. <strong><em>But they go further, and can also serve as your identity in this new environment</em></strong>.</p>
<p>In Web3, <a href="http://sinahab.com/identity-and-reputation-in-web-3/">identity and reputation</a> work very differently from what we are used to today. As a rule, in Web2 our identities are tied to some centralized provider, which almost always requires users to hand over confidential and personal information. Examples of such identities are your Google account, Facebook, Twitter, etc.</p>
<img src="https://miro.medium.com/max/1400/0*J4ADchwseloMBReD" style="width:100%; height: auto;">
<p>Web2 Login — Source: <a href="https://dev.to/tadeubdev/login-com-rede-social-usando-laravel-socialite-1i61">Dev.to</a></p>
<p>In Web3, you simply link your wallet to a decentralized application (dApp) to be able to interact with it. And unlike Web2 authentication methods, wallet addresses are <strong><em>pseudonymous</em></strong> by default. If a user chooses to connect the same wallet with multiple dApps, her (pseudonymous) identity can be easily transferable between those dApps, which means that over time the user can build up a sort of <strong><em>portable reputation</em></strong>, even without having to reveal her personal information.</p>
<img src="https://miro.medium.com/max/1400/0*j1r5XSdmWAW-QHc0" style="width:100%; height: auto;">
<p>Web3 Login — Source: <a href="https://docs.cloud.coinbase.com/wallet-sdk/docs/web3modal">Coinbase</a></p>
<p>As more and more aspects of our lives come to be experienced on Web3 — communication, work, education, entertainment, finance, and so on — all “orchestrated with tokens” (see <a href="https://future.a16z.com/why-web3-matters/">Dixon and McCormick’s definition of Web3</a>), our very identities will become more and more intertwined with the content of our wallets. For this reason, <a href="https://www.forbes.com/sites/alastairjohnson/2022/01/07/a-digital-identity-fit-for-the-metaverse/?sh=6c7417d7184b">having a portable, privacy-preserving, and secure digital identity</a> will become of paramount importance in this emerging future.</p>
<p>(I delve deeper into issues involving risks to our identities in Web3 and in the Metaverse in <a href="https://uxdesign.cc/digital-risks-in-the-metaverse-3bf8f0eda201">this article</a>.)</p>
<h1 id="types-of-wallets">Types of wallets</h1>
<img src="https://miro.medium.com/max/1400/0*n-eQ0hUKWw2tz0co" style="width:100%; height: auto;">
<p>Types of Wallets — Source: <a href="https://www.odysseydao.com/articles/how-to-use-a-hot-wallet">Odyssey DAO</a></p>
<p>The first important distinction for categorizing wallets concerns whether or not they are connected to the Internet. So-called “hot wallets” are connected to the Internet, while so-called “cold wallets” are kept offline.</p>
<h1 id="hot-wallets">Hot wallets</h1>
<p>In hot wallets, the user’s keys are stored and encrypted in the application itself, which is kept online. Examples of hot wallets include:</p>
<ul>
<li><strong><em>Web-based wallets</em></strong> (websites or browser extensions)</li>
<li><strong><em>Wallets for mobile devices</em></strong> (Android or iOS applications)</li>
<li><strong><em>Desktop Wallets</em></strong> (applications installed on your OS)</li>
</ul>
<p>Using a hot wallet, in its different forms, is generally quite convenient, but along with convenience also comes more risk, since computer networks tend to have hidden vulnerabilities that can be targeted by hackers or malware programs, among other forms of a system intrusion.</p>
<p>Hot wallets can be subdivided into two further categories, having to do with the way the keys are controlled in each case.</p>
<h2 id="custodial-hot-wallets">Custodial hot wallets</h2>
<p>These are wallets managed by an exchange (for example, by Binance, Coinbase, Crypto.com, etc.), and require you to log in with a username and password to access them, just as you would do to access any traditional web application.</p>
<p>With a custodial wallet, you do not own your keys and therefore are not in full control of the assets they manage. As a popular saying in the crypto community goes, “<em>not your keys, not your coins!</em>”</p>
<p>Because of this, when using custodial wallets you must trust the service provider to securely store your assets and implement strong security measures to prevent unauthorized access. These measures include two-factor authentication (2FA), email confirmation, and biometric authentication, among others. Many exchanges will not allow you to transact until these security measures are properly configured by you.</p>
<h2 id="non-custodial-hot-wallets">Non-custodial hot wallets</h2>
<p>These are self-managed wallets. The keys and assets these applications manage are fully under the control of the users. But since <a href="https://en.wikipedia.org/wiki/With_great_power_comes_great_responsibility">with great power comes great responsibility</a>, this means that users of non-custodial wallets must take care of their own security regarding key and seed phrase storage. If any of these are lost, recovery may be difficult or even impossible, since they are not usually stored on any third-party server.</p>
<h1 id="cold-wallets">Cold wallets</h1>
<p>Cold wallets are, by default, offline. This makes them less convenient than hot wallets, but as a rule, also makes them more secure.</p>
<p>Examples of cold wallets include:</p>
<ul>
<li><strong><em>Paper wallets</em></strong>: as the name implies, a paper wallet is a physical location where private keys and/or seed phrases are written or printed. Since hackers cannot access these records remotely, this method is generally more secure than using a hot wallet connected to the internet. On the other hand, it opens up the potential risk that the piece of paper will be destroyed or lost, which could result in unrecoverable funds.</li>
<li><strong><em>Stainless steel wallets</em></strong>: To avoid the risk of destroying a paper wallet in case of fire or flooding, you can also engrave your private keys on a stainless steel plate. Some manufacturers even offer ready-made kits for this type of wallet.</li>
<li><strong><em>Hardware wallets</em></strong>: A hardware wallet is an external, dedicated device (usually a USB or Bluetooth device) that stores your keys. You can only sign a transaction by pressing a physical button on the device, which malicious actors cannot control.</li>
</ul>
<h1 id="wallets-with-multiple-signatures-multisig">Wallets with multiple signatures (multisig)</h1>
<p>Also known as “multisig”, these are wallets that require two or more private key signatures to authorize transactions. This solution is useful for a number of use cases:</p>
<ul>
<li>An individual using a multisig wallet can avoid losing total access to the wallet in a scenario where one key is lost because then there will still be other keys able to sign transactions.</li>
<li>Multisig wallets can make misuse of funds and fraud more difficult, which makes them a good option for hedge funds, exchanges, and corporations. Since each authorized person will have a key, and a transaction requires the use of most keys, it becomes impossible for any one individual to unilaterally perform unauthorized transactions.</li>
</ul>
<p>(All the wallet types described above have multisig versions — hot, cold, hardware, and so on.)</p>
<h1 id="how-to-secure-your-wallet">How to secure your wallet</h1>
<p>If your wallet’s private key or seed phrase gets lost or stolen, you not only risk losing access to your assets but, given what was said before, an integral part of your identity on Web3 will be jeopardized. <strong><em>Therefore, it is crucial that you learn how to secure your wallet to avoid fraud and identity theft</em></strong>.</p>
<p>Here are some tips to ensure the security of your wallet:</p>
<ol>
<li><strong>Store your private keys and your seed phrases in a safe place.</strong> Consider copying them to paper or stainless steel and storing them very well, or, if you prefer to have online access, use a password manager (such as <a href="https://1password.com/">1Password</a> or <a href="https://www.lastpass.com/">LastPass</a>).</li>
<li><strong>Never share your private keys or seed phrases with anyone.</strong> No matter who asks — just don’t share!</li>
<li><strong>Protect your password.</strong> If your wallet has a separate password, anyone who obtains it can obtain your private key. So choose a secure password, preferably saving it in a password manager, and using <a href="https://authy.com/what-is-2fa/">2FA</a>.</li>
<li><strong>Don’t leave valuable assets in your everyday hot wallet.</strong> Instead, put those assets in a cold wallet or in a separate hot wallet with reinforced security. If you have a lot of assets in your wallet and share your address publicly, sooner or later someone will try to pull a scam using this information and some social engineering techniques.</li>
<li><strong>Carefully check any website URL, email address, or social network profile before taking any action involving your wallet.</strong> Scammers usually pose as a trusted platform to phish your seed phrase or private key.</li>
<li><strong>Turn off private messaging in apps like Discord and Telegram, and never interact with unknown assets (such as NFTs) that appear “out of nowhere” in your wallet.</strong> These are two common attack vectors that scammers use.</li>
</ol>
<p>In addition to these general tips, here are some suggestions of best practices for using <strong><em>cold wallets</em></strong> specifically:</p>
<ol>
<li><strong>Your seed phrase is more important than the device itself</strong>. If your cold wallet is damaged, you can always recover your assets by importing your seed phrase into another wallet. Therefore, prioritize the safety of the seed phrase as indicated above.</li>
<li><strong>Do not use the seed phrase from a hot wallet in your cold wallet</strong>. The purpose of the cold wallet is to store a seed phrase offline. Reusing a hot wallet seed phrase in the cold wallet means bringing back all the problems of online storage.</li>
<li><strong>Be very wary of cold wallet phishing attempts</strong>. Buy a cold wallet only from the official websites of the manufacturers (such as Ledger and Trezor). Do not respond to “support” emails, letters, or private messages asking for your seed phrase.</li>
</ol>
<h1 id="common-frauds-involving-wallets-and-tips-to-avoid-them">Common frauds involving wallets, and tips to avoid them</h1>
<p>One of the main goals of scammers regarding the Web3 space is to trick you into sharing your private key or your seed phrase. Here is a list of common scams for this purpose, and tips for avoiding them.</p>
<h2 id="phishing-attacks-by-fake-customer-support-accounts"><em>Phishing attacks by fake customer support accounts</em></h2>
<p>Scammers send a message via email, social network, SMS, etc., informing you that there has been some kind of problem with your wallet — for example, “Your Metamask account has been hacked.” The criminals then try to convince you to share your private key or your seed phrase, supposedly to verify that you really own the “hacked” account. If this happens:</p>
<ul>
<li>Carefully check the website URL, email address, social profile, or phone number from which the message originated.</li>
<li>Even if the source <em>seems</em> reliable, remember: <em>no reputable platform will ask for your private key or seed phrase</em>!</li>
</ul>
<img src="https://miro.medium.com/max/1400/0*O-IrBUBEjQXPPrmd" style="width:100%; height: auto;">
<p>MetaMask’s Fake Support Attack — Source: <a href="https://www.odysseydao.com/articles/how-to-avoid-wallet-scams">Odyssey DAO</a></p>
<img src="https://miro.medium.com/max/1400/0*q3mOnjpmFdQqCak0" style="width:100%; height: auto;">
<p>Trust Wallet Fake Support Attack — Source: <a href="https://learn.rainbow.me/how-to-avoid-crypto-scams">Rainbow</a></p>
<h2 id="airdrops-of-fake-tokens-and-nfts">Airdrops of fake tokens and NFTs</h2>
<p>Since wallet addresses are public, literally anyone can send tokens or NFTs to these addresses. This is usually not a big problem, because you can simply choose to ignore them; but some cybercriminals have developed ways to send tokens that can execute transactions on your account as soon as you interact with them. In this sense, one could compare these tokens to a trojan that allows hackers to access your computer as soon as you interact with a malicious file. A more detailed analysis of this type of scam, including an explanatory video, can be found <a href="https://medium.com/metamask/phisher-watch-airdrop-scams-82eea95d9b2a">here</a>.</p>
<p>As a precaution, be very careful with “freebies” and “gifts”, usually offered by fake profiles on social networks or by private instant messages on Discord servers or in Telegram groups. <strong><em>Never interact with a token of unknown origin in your wallet!</em></strong></p>
<h2 id="blind-signing">Blind-signing</h2>
<p>Another recent and still little-known type of attack used to steal digital assets from wallets is <a href="https://www.ledger.com/academy/cryptos-greatest-weakness-blind-signing-explained">blind signing</a>. This attack takes advantage of the fact that users who employ their wallets to interact with dApps and NFTs often do not review the code of the smart contracts underlying these applications and therefore may end up signing and authorizing transactions without knowing exactly what they are signing and authorizing.</p>
<p>For example, it is sometimes necessary to grant a third party — say, cryptocurrency exchange or an NFT marketplace — permission to conduct transactions involving tokens within your wallet. Once third-party access is approved, users can exchange tokens or list NFTs for sale without paying additional fees each time. The attackers have found ways to trick victims into giving them third-party approval over the contents of their wallets, which can be transferred to other addresses controlled by the criminals.</p>
<h2 id="fake-hardware-wallets">Fake hardware wallets</h2>
<p>One very ingenious scam involves sending some sort of correspondence — it can be an email or even a <a href="https://www.ledger.com/phishing-campaigns-status#phishing-campaigns">physical letter in the mail</a>, “signed” by a CEO of a hardware wallet manufacturer — that tries to convince the user that their wallet has suffered some sort of attack and needs to be replaced. Sometimes a new device is even sent along with the letter. But these new devices have been hacked to provide access to the fraudsters, who then clone the wallet using the previously created seed phrase to gain access to the user’s funds.</p>
<p>If something like this happens, simply throw these devices in the trash and inform the manufacturer of the attempt.</p>
<img src="https://miro.medium.com/max/1400/0*o7NaXbI0hqh_aLHA" style="width:100%; height: auto;">
<p>A fake letter signed by “Ledger CEO” — Source: <a href="https://www.ledger.com/phishing-campaigns-status#phishing-campaigns">Ledger</a></p>
<p>Speaking of Web3 Identities, Unstoppable Domains is on a mission to create the best web3 domains and identities on the planet. Their domains fix a lot of issues such as long complex crypto addresses, sign-in with your web3 ID, and more. My Web3 Domain is stephenajulu.crypto. Get your own now at a discounted price. Free minting and no renewal fees: <a href="https://unstoppabledomains.pxf.io/qnXOv5"><strong>Unstoppable Domains</strong></a></p>
<h3 id="1365885"><a href="https://unstoppabledomains.pxf.io/c/3290657/1365885/15384">Blockchain.com Premium Domains</a></h3>  
<img height="0" width="0" src="https://imp.pxf.io/i/3290657/1365885/15384" style="position:absolute;visibility:hidden;" border="0" />
<h1 id="sources-and-further-reading">Sources and Further Reading</h1>
<ul>
<li><a href="https://uxdesign.cc/wallets-as-web3-identities-77fd2f7acb17"><strong>Wallets as web3 identities</strong></a> <em>By</em> <a href="https://linktr.ee/jonadas"><strong><em>Jônadas Techio</em></strong></a> <strong><em>—</em></strong> <em>Blockchain Solutions Architect &amp; Web3 Evangelist @</em> <a href="https://axur.com/"><em>Axur</em></a>(Medium)</li>
<li><a href="https://crypto.com/university/crypto-wallets">What is a Crypto Wallet? A Beginner’s Guide</a> (Crypto.com)</li>
<li><a href="https://www.coinbase.com/learn/crypto-basics/what-is-a-crypto-wallet">What is a crypto wallet? | Coinbase</a></li>
<li><a href="https://networkencyclopedia.com/public-key-cryptography/">Public Key Cryptography — Network Encyclopedia</a></li>
<li><a href="https://blog.realt.co/seed-phrase-101-56e4c9150c43">Seed Phrase 101</a> (Realt Academy)</li>
<li><a href="https://www.odysseydao.com/articles/how-to-use-a-hot-wallet">How to use a hot wallet?</a> (Odyssey DAO)</li>
<li><a href="https://juliawu.medium.com/the-anatomy-of-metamask-28b0d68721d2">The Anatomy of MetaMask. An X-ray of Web3’s Beloved Fox | by Julia Wu | Jun, 2022</a></li>
<li><a href="https://www.odysseydao.com/articles/how-to-use-a-cold-wallet">How to use a cold wallet?</a> (Odyssey DAO)</li>
<li><a href="https://crypto.com/university/what-is-a-hardware-wallet">What is a Hardware Wallet and How Does it Work?</a> (Crypto.com)</li>
<li><a href="https://learn.rainbow.me/how-to-avoid-crypto-scams">How to avoid crypto scams</a> (Rainbow)</li>
<li><a href="https://www.odysseydao.com/articles/how-to-avoid-wallet-scams">How to avoid wallet scams?</a> (Odyssey DAO)</li>
<li><a href="https://conteudo.axur.com/en/ebook-digital-risks-blockchain-and-web3">Digital Risks in Blockchain and Web3</a> (Axur — Free Ebook)</li>
<li><a href="https://uxdesign.cc/digital-risks-in-the-metaverse-3bf8f0eda201">Digital risks in the Metaverse</a> (Medium)</li>
</ul>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/piggybank-3akqgjoowvi-unsplash.webp" medium="image"/></item><item><title>5 Free Tools For Solopreneurs/Entrepreneurs (Updated)</title><link>https://ajulu.netlify.app/posts/5-free-tools-for-solopreneurs-entrepreneurs/</link><pubDate>Wed, 15 Jun 2022 10:28:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/5-free-tools-for-solopreneurs-entrepreneurs/</guid><description>&lt;p&gt;Here are a few free tools to help ease your solo entrepreneur journey.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://spark.adobe.com/"&gt;&lt;strong&gt;Adobe Spark Post&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;/&lt;/strong&gt; &lt;a href="https://partner.canva.com/2r3dPO"&gt;&lt;strong&gt;Canva&lt;/strong&gt;&lt;/a&gt; - For designing posters and more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=2ahUKEwjUxcDm_4LzAhV5BWMBHXGMAiMQFnoECBcQAw&amp;amp;url=https%3A%2F%2Fbuffer.com%2F&amp;amp;usg=AOvVaw2mG4Ko83xHqqxn56We3HsR"&gt;&lt;strong&gt;Buffer&lt;/strong&gt;&lt;/a&gt; - For scheduling social media posts &amp;amp; more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=2ahUKEwiVsIuAgIPzAhVN8BQKHTjpCAEQFnoECAwQAw&amp;amp;url=https%3A%2F%2Fanalytics.google.com%2F&amp;amp;usg=AOvVaw1Jx9i6a4S_nl7I67YnB98r"&gt;&lt;strong&gt;Google Analytics&lt;/strong&gt;&lt;/a&gt; - For studying site/app traffic and more&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.hubspot.com/products/crm"&gt;&lt;strong&gt;Hubspot CRM&lt;/strong&gt;&lt;/a&gt; - A customer relationship management tool to your email and track every contact emailed ever.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://unsplash.com/"&gt;&lt;strong&gt;Unsplash&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;/&lt;/strong&gt; &lt;a href="https://www.pexels.com/"&gt;&lt;strong&gt;Pexels&lt;/strong&gt;&lt;/a&gt; - For free photos&lt;/li&gt;
&lt;li&gt;Bonus: &lt;strong&gt;WordPress, Wix, Weebly, Framer,&lt;/strong&gt; &lt;a href="https://try.carrd.co/fxxsbw29"&gt;&lt;strong&gt;Carrd&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;(Top Recommendation), Shopify, or Webflow&lt;/strong&gt; for your website&lt;/li&gt;
&lt;/ol&gt;</description><content:encoded><![CDATA[<p>Here are a few free tools to help ease your solo entrepreneur journey.</p>
<ol>
<li><a href="https://spark.adobe.com/"><strong>Adobe Spark Post</strong></a> <strong>/</strong> <a href="https://partner.canva.com/2r3dPO"><strong>Canva</strong></a> - For designing posters and more</li>
<li><a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwjUxcDm_4LzAhV5BWMBHXGMAiMQFnoECBcQAw&amp;url=https%3A%2F%2Fbuffer.com%2F&amp;usg=AOvVaw2mG4Ko83xHqqxn56We3HsR"><strong>Buffer</strong></a> - For scheduling social media posts &amp; more</li>
<li><a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwiVsIuAgIPzAhVN8BQKHTjpCAEQFnoECAwQAw&amp;url=https%3A%2F%2Fanalytics.google.com%2F&amp;usg=AOvVaw1Jx9i6a4S_nl7I67YnB98r"><strong>Google Analytics</strong></a>  - For studying site/app traffic and more</li>
<li><a href="https://www.hubspot.com/products/crm"><strong>Hubspot CRM</strong></a> - A customer relationship management tool to your email and track every contact emailed ever.</li>
<li><a href="https://unsplash.com/"><strong>Unsplash</strong></a> <strong>/</strong> <a href="https://www.pexels.com/"><strong>Pexels</strong></a> - For free photos</li>
<li>Bonus: <strong>WordPress, Wix, Weebly, Framer,</strong> <a href="https://try.carrd.co/fxxsbw29"><strong>Carrd</strong></a><strong>(Top Recommendation), Shopify, or Webflow</strong> for your website</li>
</ol>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/brooke-lark-nmffl1zjbw4-unsplash.webp" medium="image"/></item><item><title>5 Free Tools For Creating Ebooks (Updated)</title><link>https://ajulu.netlify.app/posts/5-free-tools-for-creating-ebooks/</link><pubDate>Tue, 14 Jun 2022 11:28:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/5-free-tools-for-creating-ebooks/</guid><description>&lt;p&gt;Here are 5 free tools for creating ebooks:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.google.com/url?sa=t&amp;amp;rct=j&amp;amp;q=&amp;amp;esrc=s&amp;amp;source=web&amp;amp;cd=&amp;amp;cad=rja&amp;amp;uact=8&amp;amp;ved=2ahUKEwjU__3C4OXyAhUFrxoKHbwsD-oQFnoECAYQAQ&amp;amp;url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fu%2F0%2F&amp;amp;usg=AOvVaw2GSg9qEkTUoGTBtb4uwDkC"&gt;&lt;strong&gt;Google Docs&lt;/strong&gt;&lt;/a&gt;: to write it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://partner.canva.com/WDLNjM"&gt;&lt;strong&gt;Canva&lt;/strong&gt;&lt;/a&gt;/&lt;a href="https://spark.adobe.com/sp/"&gt;&lt;strong&gt;Adobe Spark Post&lt;/strong&gt;&lt;/a&gt;: to design an ebook cover for it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://stephenajulu.gumroad.com/l/EEnXP"&gt;&lt;strong&gt;Gumroad&lt;/strong&gt;&lt;/a&gt;: to host and sell it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://app.grammarly.com/"&gt;&lt;strong&gt;Grammarly&lt;/strong&gt;&lt;/a&gt;: to proofread and edit it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://try.carrd.co/fxxsbw29"&gt;&lt;strong&gt;Carrd&lt;/strong&gt;&lt;/a&gt;: to create a landing page for it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://instagram.com/stephenajulu"&gt;&lt;strong&gt;Instagram&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;/&lt;/strong&gt;&lt;a href="https://twitter.com/stephenajulu"&gt;&lt;strong&gt;Twitter&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;/&lt;/strong&gt;&lt;a href="https://facebook.com/stephenajulu"&gt;&lt;strong&gt;Facebook&lt;/strong&gt;&lt;/a&gt;: to market it&lt;/li&gt;
&lt;li&gt;&lt;a href="https://paypal.com"&gt;&lt;strong&gt;PayPal&lt;/strong&gt;&lt;/a&gt;/&lt;a href="https://stripe.com"&gt;&lt;strong&gt;Stripe&lt;/strong&gt;&lt;/a&gt;: to receive payment for it&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&amp;rsquo;s that simple but of course, you&amp;rsquo;ll need a topic, 15 pages minimum but you can go lower. You can export it as a PDF and then drop it on Gumroad.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Here are 5 free tools for creating ebooks:</p>
<ul>
<li><a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwjU__3C4OXyAhUFrxoKHbwsD-oQFnoECAYQAQ&amp;url=https%3A%2F%2Fdocs.google.com%2Fdocument%2Fu%2F0%2F&amp;usg=AOvVaw2GSg9qEkTUoGTBtb4uwDkC"><strong>Google Docs</strong></a>: to write it</li>
<li><a href="https://partner.canva.com/WDLNjM"><strong>Canva</strong></a>/<a href="https://spark.adobe.com/sp/"><strong>Adobe Spark Post</strong></a>: to design an ebook cover for it</li>
<li><a href="https://stephenajulu.gumroad.com/l/EEnXP"><strong>Gumroad</strong></a>: to host and sell it</li>
<li><a href="https://app.grammarly.com/"><strong>Grammarly</strong></a>: to proofread and edit it</li>
<li><a href="https://try.carrd.co/fxxsbw29"><strong>Carrd</strong></a>: to create a landing page for it</li>
<li><a href="https://instagram.com/stephenajulu"><strong>Instagram</strong></a><strong>/</strong><a href="https://twitter.com/stephenajulu"><strong>Twitter</strong></a><strong>/</strong><a href="https://facebook.com/stephenajulu"><strong>Facebook</strong></a>: to market it</li>
<li><a href="https://paypal.com"><strong>PayPal</strong></a>/<a href="https://stripe.com"><strong>Stripe</strong></a>: to receive payment for it</li>
</ul>
<p>It&rsquo;s that simple but of course, you&rsquo;ll need a topic, 15 pages minimum but you can go lower. You can export it as a PDF and then drop it on Gumroad.</p>
<p>Not sure of the process/requirements but you could also sell it on Amazon.</p>
<p>Once you create your ebook, feel free to leave a link in the bio and I&rsquo;ll make sure to post it here. But it must be related to the topics(Tech, Design, Lifestyle and Investments) posted on this blog.</p>
<p>Photo by <a href="https://unsplash.com/@bady?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">bady abbas</a> on <a href="https://unsplash.com/s/photos/ebooks?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/bady-abbas-algjkcowdva-unsplash.webp" medium="image"/></item><item><title>Phone Buying Tips</title><link>https://ajulu.netlify.app/posts/phone-buying-tips/</link><pubDate>Sat, 11 Jun 2022 20:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/phone-buying-tips/</guid><description>&lt;p&gt;Let&amp;rsquo;s jump right in.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Make sure to do due diligence. - Always research the specs you want, check their prices on local selling sites, and know what exactly you want to buy. This protects you from scams and high prices.&lt;/li&gt;
&lt;li&gt;Buy from reputable shops. - Always buy your phone from reputable shops, especially in Kenya. The chances of you being sold a fake Chinese phone are 8 in 10.&lt;/li&gt;
&lt;li&gt;Make sure the phone&amp;rsquo;s box comes wrapped in plastic paper that can&amp;rsquo;t be tampered with without showing e.g a tear or an opening. Usually, genuine phones come wrapped in a completely sealed plastic bag.&lt;/li&gt;
&lt;li&gt;Make sure you check for a sticker that says &amp;ldquo;Don&amp;rsquo;t buy if tampered with&amp;rdquo; or something similar. The box should be completely closed and stickers should be present to prevent tampering. If these stickers are cut or seem to have been peeled off don&amp;rsquo;t buy the phone.&lt;/li&gt;
&lt;li&gt;Make sure to compare the physical box with one from a reputable site online. Copies are usually made willy nilly hence differences can be seen.&lt;/li&gt;
&lt;li&gt;Make sure to get a warranty and receipt of purchase&lt;/li&gt;
&lt;li&gt;Hard reset the phone before leaving the shop. Most fake phones have a custom skin, boot loading animation, and look, hard resetting via the bootloader easily reveals these because they are usually application-level apps hidden from the app drawer.&lt;/li&gt;
&lt;li&gt;Dial the codes for your phone make that check if the phone is genuine.&lt;/li&gt;
&lt;li&gt;Finally, trust your intuition. If the phone feels fake or a bit too cheap in relation to its specs then something&amp;rsquo;s likely up. When the deal is too good, think twice.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Here are some good specs:&lt;/p&gt;</description><content:encoded><![CDATA[<p>Let&rsquo;s jump right in.</p>
<ol>
<li>Make sure to do due diligence. - Always research the specs you want, check their prices on local selling sites, and know what exactly you want to buy. This protects you from scams and high prices.</li>
<li>Buy from reputable shops. - Always buy your phone from reputable shops, especially in Kenya. The chances of you being sold a fake Chinese phone are 8 in 10.</li>
<li>Make sure the phone&rsquo;s box comes wrapped in plastic paper that can&rsquo;t be tampered with without showing e.g a tear or an opening. Usually, genuine phones come wrapped in a completely sealed plastic bag.</li>
<li>Make sure you check for a sticker that says &ldquo;Don&rsquo;t buy if tampered with&rdquo; or something similar. The box should be completely closed and stickers should be present to prevent tampering. If these stickers are cut or seem to have been peeled off don&rsquo;t buy the phone.</li>
<li>Make sure to compare the physical box with one from a reputable site online. Copies are usually made willy nilly hence differences can be seen.</li>
<li>Make sure to get a warranty and receipt of purchase</li>
<li>Hard reset the phone before leaving the shop. Most fake phones have a custom skin, boot loading animation, and look, hard resetting via the bootloader easily reveals these because they are usually application-level apps hidden from the app drawer.</li>
<li>Dial the codes for your phone make that check if the phone is genuine.</li>
<li>Finally, trust your intuition. If the phone feels fake or a bit too cheap in relation to its specs then something&rsquo;s likely up. When the deal is too good, think twice.</li>
</ol>
<p>Here are some good specs:</p>
<ol>
<li>FHD+ Screen</li>
<li>4GB+ RAM</li>
<li>64GB+ Storage</li>
<li>4K Recording</li>
<li>4500mAh+ Battery</li>
<li>Latest Software Updates</li>
</ol>
<h2 id="conclusion">Conclusion:</h2>
<p>Research beforehand, Check the box, get a warranty, get a receipt, check the phone, and trust intuition.</p>
<p>Have a great day!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/youssef-sarhan-sdth9wydmre-unsplash.webp" medium="image"/></item><item><title>Top Tech Gadgets Under ksh. 5,000 (Kenya Version)</title><link>https://ajulu.netlify.app/posts/top-tech-under-ksh.5-000-kenya-version/</link><pubDate>Thu, 09 Jun 2022 06:48:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/top-tech-under-ksh.5-000-kenya-version/</guid><description>&lt;p&gt;Hello, today I&amp;rsquo;ll be covering tech that&amp;rsquo;s under 5k.&lt;/p&gt;
&lt;h4 id="wireless-earphones"&gt;Wireless Earphones&lt;/h4&gt;
&lt;p&gt;In this day and age, this is a must. We have all experienced that annoying tangling cable issue. Upgrade and use wireless earphones. Not only don&amp;rsquo;t they tangle, but they also don&amp;rsquo;t get in the way when working on something or working out. Here are my top recommendations&lt;/p&gt;
&lt;p&gt;i. &lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Ffreepods3-true-wireless-stereo-earbuds-black-oraimo-mpg383821.html"&gt;Oramio Freepods3&lt;/a&gt; at 3,200/=&lt;/p&gt;
&lt;p&gt;ii. &lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fxiaomi-redmi-buds-3-lite-black-64794832.html"&gt;Xiaomi Redmi Buds 3 Lite &lt;/a&gt;at 2,500/=&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hello, today I&rsquo;ll be covering tech that&rsquo;s under 5k.</p>
<h4 id="wireless-earphones">Wireless Earphones</h4>
<p>In this day and age, this is a must. We have all experienced that annoying tangling cable issue. Upgrade and use wireless earphones. Not only don&rsquo;t they tangle, but they also don&rsquo;t get in the way when working on something or working out. Here are my top recommendations</p>
<p>i. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Ffreepods3-true-wireless-stereo-earbuds-black-oraimo-mpg383821.html">Oramio Freepods3</a> at 3,200/=</p>
<p>ii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fxiaomi-redmi-buds-3-lite-black-64794832.html">Xiaomi Redmi Buds 3 Lite </a>at 2,500/=</p>
<p>iii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Friff-smaller-for-comfort-true-wireless-earbuds-white-oraimo-mpg383082.html">Oramio Riff</a> at 2,200/=</p>
<h4 id="portable-speakers">Portable Speakers</h4>
<p>I won&rsquo;t even talk too much about this. Bro/Siz, you need this. Being able to play your favorite music come rain come shine is a great feeling.</p>
<p>i. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Foraimo-portable-wireless-speaker-subwoofer-outdoor-sound-box-48096170.html">Oramio Portable Speaker and Subwoofer</a> at 2,122/=</p>
<p>ii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fxiaomi-portable-bluetooth-wireless-speaker-bluetooth-4.0-mini-speaker-grey-13491382.html">Xiaomi Portable Speaker </a> at 2,500/=</p>
<h4 id="smartwatches-and-bands">Smartwatches and bands</h4>
<p>Guys, you need this for accurate monitoring of steps and KMs run. This also helps identify heart issues early on.</p>
<p>i. <a href="">Oramio Tempo 2 </a> at 4,000/=</p>
<p>ii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Foraimo-smart-watch-1.69-ips-screen-ip68-waterproof-55136016.html">Oramio Smart Watch</a> at 3,848/=</p>
<p>iii. <a href="https://www.jumia.co.ke/xiaomi-mi-smart-band-5-amoled-screen-black-31626773.html">Xiaomi MI Band 5</a> at 3,000/=</p>
<p>iv. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Famazfit-band-5-1.1-full-color-amoled-olive-61434841.html">Amazfit Band 5</a> at 4,000/=</p>
<p>v. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Frealme-smart-watch-2-black-60993362.html">Realme Smartwatch 2</a> at 4,700/=</p>
<h4 id="electric-toothbrush">Electric Toothbrush</h4>
<p>Just an overall good buy. Most of us don&rsquo;t know how to brush our teeth so we instead use force thereby wearing down both our teeth and toothbrush. The key is light circular motions and these will definitely come in handy.</p>
<p>i. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Ffairywill-the-fairywill-e11-electric-toothbrush-61747987.html">Fairywill E11</a> at 4,000/=</p>
<p>ii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fminiso-multi-color-electric-toothbrush-kit-light-gray-67380151.html">Miniso Electric ToothBrush</a> at 600/=</p>
<h4 id="feature-phone--mulika-mwizi--kabambe--katululu">Feature Phone / Mulika Mwizi / Kabambe / Katululu</h4>
<p>i. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fnokia-105-2019-1.77kabambedual-sim-black-58587347.html">Nokia 105</a> at 1,400/=</p>
<p>ii. <a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fnokia-106-dual-sim-4mb-ram-4mb-rom-1.8-phone-48612785.html">Nokia 106</a> at 1,500/=</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/onur-binay-_rppmkqtttg-unsplash.webp" medium="image"/></item><item><title>Host Your Website For Free, Make It Web3 Compliant and Earn Money From It</title><link>https://ajulu.netlify.app/posts/host-your-website-for-free-make-it-web3-compliant-and-earn-money-from-it/</link><pubDate>Thu, 26 May 2022 20:30:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/host-your-website-for-free-make-it-web3-compliant-and-earn-money-from-it/</guid><description>&lt;h3 id="host-your-website-for-free"&gt;Host Your Website For Free&lt;/h3&gt;
&lt;h4 id="static-websites"&gt;Static Websites&lt;/h4&gt;
&lt;p&gt;Assuming the source code is in a git repository online(GitHub, GitLab, BitBucket, etc)&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://netlify.com"&gt;netlify.com&lt;/a&gt; and create an account&lt;/li&gt;
&lt;li&gt;Click &amp;ldquo;&lt;strong&gt;&lt;em&gt;Add new site&lt;/em&gt;&lt;/strong&gt;&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Select &amp;ldquo;&lt;strong&gt;&lt;em&gt;Import an existing project&lt;/em&gt;&lt;/strong&gt;&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Select Git provider_(&lt;a href="https://github.com/stephenajulu"&gt;&lt;em&gt;I&amp;rsquo;m on github&lt;/em&gt;&lt;/a&gt;)_&lt;/li&gt;
&lt;li&gt;Authenticate and Authorize&lt;/li&gt;
&lt;li&gt;Select the repository&lt;/li&gt;
&lt;li&gt;Enter build command e.g this site&amp;rsquo;s build command is &amp;ldquo;&lt;strong&gt;&lt;em&gt;hugo &amp;ndash;gc &amp;ndash;minify&lt;/em&gt;&lt;/strong&gt;&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Enter publish directory e.g this site&amp;rsquo;s publish directory is &amp;ldquo;&lt;strong&gt;&lt;em&gt;public&lt;/em&gt;&lt;/strong&gt;&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Click &amp;ldquo;&lt;strong&gt;&lt;em&gt;Deploy site&lt;/em&gt;&lt;/strong&gt;&amp;rdquo;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That&amp;rsquo;s it. Depending on the static version you used. It will take some time.&lt;/p&gt;</description><content:encoded><![CDATA[<h3 id="host-your-website-for-free">Host Your Website For Free</h3>
<h4 id="static-websites">Static Websites</h4>
<p>Assuming the source code is in a git repository online(GitHub, GitLab, BitBucket, etc)</p>
<ol>
<li>Go to <a href="https://netlify.com">netlify.com</a> and create an account</li>
<li>Click &ldquo;<strong><em>Add new site</em></strong>&rdquo;</li>
<li>Select &ldquo;<strong><em>Import an existing project</em></strong>&rdquo;</li>
<li>Select Git provider_(<a href="https://github.com/stephenajulu"><em>I&rsquo;m on github</em></a>)_</li>
<li>Authenticate and Authorize</li>
<li>Select the repository</li>
<li>Enter build command e.g this site&rsquo;s build command is &ldquo;<strong><em>hugo &ndash;gc &ndash;minify</em></strong>&rdquo;</li>
<li>Enter publish directory e.g this site&rsquo;s publish directory is &ldquo;<strong><em>public</em></strong>&rdquo;</li>
<li>Click &ldquo;<strong><em>Deploy site</em></strong>&rdquo;</li>
</ol>
<p>That&rsquo;s it. Depending on the static version you used. It will take some time.</p>
<p><strong>NB:</strong> <em>Just plain HTML, CSS, and Javascript will take less than 3 seconds and does not need a specified build command or publish directory, Hugo takes anywhere from 10 seconds to 1 minute depending on how large your site is.</em></p>
<h4 id="dynamic-websites">Dynamic Websites</h4>
<p>Now, this depends on what tech stack you are using. I won&rsquo;t lay down the details. Rather I&rsquo;ll provide you with a few hosting solutions, both free and paid.</p>
<ol>
<li><a href="https://heroku.com">Heroku</a></li>
<li><a href="https://digitalocean.com">Digital Ocean</a></li>
<li><a href="https://truehost.co.ke/cloud/aff.php?aff=1738">Truehost(Affordable)</a></li>
<li><a href="https://namecheap.com">Namecheap</a></li>
</ol>
<h3 id="making-your-website-web3-compliant">Making Your Website Web3 Compliant</h3>
<p>As far as I know, the only possible way is by making a static site web3 compliant. I don&rsquo;t know how to make a dynamic site web3 compliant hence will only cover static sites.</p>
<p>There are four URL options:</p>
<p>1. <strong>Constant Hashes</strong> =&gt; serve as links within ipfs and have been discussed in my previous article.</p>
<p>2. <strong>DNSLink</strong> =&gt; Simply put, a regular Web2.0 domain name from a DNS record.</p>
<p>3. <strong>ENS</strong> =&gt; Dynamic Url with a &rsquo; <em>.eth</em> &rsquo; ending and that is more readable than IPNs links. I would argue that this is the best domain choice for establishing a website, but the first option is free :)</p>
<ol>
<li><a href="https://unstoppabledomains.pxf.io/qnXOv5"><strong>Unstoppable Domains</strong></a> =&gt; Dynamic Url with multiple endings. My recommended choice.</li>
</ol>
<h4 id="static-sites">Static Sites</h4>
<ol>
<li>Go to <a href="https://fleek.co">fleek.co</a> and create an account</li>
<li>Follow the same process as Netlify</li>
<li>Select either IPFS or Internet Computer. Your choice.</li>
</ol>
<h3 id="earn-money-from-your-content-website">Earn Money From Your Content Website</h3>
<p>Here I won&rsquo;t cover affiliate marketing and other popular ways to monetize your website as there are enough resources in the web.</p>
<h4 id="1-web-monetization">1. Web Monetization</h4>
<p>To monetize your site, you must:</p>
<ol>
<li>
<p>Set up a web monetized receiver (wallet) for receiving payments. <a href="https://webmonetization.org/docs/ilp-wallets">Supported wallets.</a></p>
</li>
<li>
<p>Get your wallet&rsquo;s payment pointer. E.g. $wallet.example.com/alice</p>
</li>
<li>
<p>Create a special <code>&lt;meta&gt;</code> tag that tells <a href="https://webmonetization.org/#providers">Web Monetization providers</a> how to pay you. e.g.</p>
<pre><code>&lt;meta name=&quot;monetization&quot; content=&quot;$wallet.example.com/alice&quot;&gt;
</code></pre>
</li>
<li>
<p>Add the <code>&lt;meta&gt;</code> tag to each page of your website that you want to monetize. E.g.</p>
<pre><code>&lt;!doctype html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Web Monetized Site&lt;/title&gt;
&lt;meta name=&quot;monetization&quot; content=&quot;$wallet.example.com/alice&quot;&gt;
&lt;/head&gt;
&lt;/html&gt;
</code></pre>
</li>
<li>
<p>For a more detailed look at web monetizing your site, see the <a href="https://webmonetization.org/docs/explainer#getting-started">Web Monetization explainer</a>.</p>
</li>
<li>
<p>Congratulations! Your website is now web monetized.</p>
</li>
</ol>
<h4 id="2-basic-attention-tokens">2. Basic Attention Tokens</h4>
<p>Follow <a href="https://basicattentiontoken.org/publisher-terms-of-service/"><strong>this</strong></a> and <a href="https://creators.brave.com/"><strong>this</strong></a><strong>.</strong></p>
<h4 id="3-digital-product">3. Digital Product</h4>
<p>Create an account on Gumroad, and start creating digital products and selling. Then use their overlay widget on your website</p>
<p>Photo by <a href="https://unsplash.com/@le_buzz?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Le Buzz</a> on <a href="https://unsplash.com/s/photos/website?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
<p><a href="https://unstoppabledomains.pxf.io/qnXOv5"><img src="/images/unstoppabledomainsad.webp" style="width: 100%; height: auto;"></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/le-buzz-kieii2b9gku-unsplash.webp" medium="image"/></item><item><title>How To Add Google Analytics to Your Website and Measure Traffic</title><link>https://ajulu.netlify.app/posts/how-to-add-google-analytics-to-your-website-and-measure-traffic/</link><pubDate>Fri, 31 Dec 2021 08:20:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/how-to-add-google-analytics-to-your-website-and-measure-traffic/</guid><description>&lt;p&gt;Hi, today I&amp;rsquo;d like to help you set up Google Analytics and monitor your traffic.&lt;/p&gt;
&lt;p&gt;Before we go on, I provide a microservice where I set this(Google Analytics) up for you so that you don&amp;rsquo;t have to worry about the long process, code, and all the other things we go through here in this article, so contact me via &lt;a href="mailto:alunje73@gmail.com"&gt;email&lt;/a&gt; or &lt;a href="https://ajulu.netlify.app/contact"&gt;visit my contact page&lt;/a&gt; to order, fast and simple.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s go on.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi, today I&rsquo;d like to help you set up Google Analytics and monitor your traffic.</p>
<p>Before we go on, I provide a microservice where I set this(Google Analytics) up for you so that you don&rsquo;t have to worry about the long process, code, and all the other things we go through here in this article, so contact me via <a href="mailto:alunje73@gmail.com">email</a> or <a href="/contact">visit my contact page</a> to order, fast and simple.</p>
<p>Let&rsquo;s go on.</p>
<h3 id="what-does-google-analytics-do">What Does Google Analytics Do?</h3>
<p>Google Analytics gathers a wide variety of information, which can be divided into five categories:</p>
<ul>
<li><strong>Realtime:</strong> Displays what’s happening on your site at the specific moment you’re viewing the report.</li>
<li><strong>Audience:</strong> Includes information about who is visiting your site, including demographics.</li>
<li><strong>Acquisition:</strong> Explains how your site acquires traffic.</li>
<li><strong>Behavior:</strong> Shows what visitors do on your site, including buttons clicks and which of your pages are the most popular.</li>
<li><strong>Conversions:</strong> An advanced report to be used in conjunction with Google Analytics Goals, to track activity such as email list subscriptions or e-commerce sales.</li>
</ul>
<p>Some examples of specific information you might find in your Google Analytics reports include:</p>
<ul>
<li>The number of active users on your site at any given moment.</li>
<li>How many people visit your site over time.</li>
<li>Your visitors’ ages, genders, and locations.</li>
<li>Where your visitors come from (e.g., organic search, social media, etc.).</li>
<li>Which pages visitors view and for how long.</li>
<li>Bounce, click-through, and conversion rates.</li>
</ul>
<h3 id="why-is-google-analytics-important-for-your-website">Why is Google Analytics Important for Your Website?</h3>
<p>Once you’ve started a WordPress website, you should know how it’s performing. And to get this useful data, you need Google Analytics. It’s a powerful tool that helps you understand how people use your site.</p>
<p>Here are some benefits of using Analytics:</p>
<ul>
<li><strong>Identify Traffic Sources</strong> – You can find out where your visitors come from, which channel they use (search, social, paid, etc.), which country they belong to, and more.</li>
<li><strong>Better Understand Your Audience</strong> – Once someone lands on your website, what do they do? With Google Analytics, you can track their every interaction and see what links they click or which files they download.</li>
<li><strong>Create Content That People Like</strong> – Google Analytics helps you track your pages and posts, so you know which content drives a lot of traffic. This way, you can find similar topics to cover and boost your traffic.</li>
<li><strong>Conversions and Sales</strong> – If you have an eCommerce store, then Google Analytics can help you track your conversions and see how much revenue your store is making.</li>
<li><strong>Improve Your Site’s User Experience</strong> – Find out how people behave on your site, which pages they visit, which device or browser they use so you can improve the user experience of your website.</li>
</ul>
<h3 id="how-to-setup-google-analytics">How To Setup Google Analytics</h3>
<ol>
<li>Register/Login to <a href="https://analytics.google.com">Google Analytics</a></li>
<li>Navigate to the <strong>Admin</strong> menu on the bottom left.</li>
<li>Create a new property by tapping the &ldquo;Create Property&rdquo; button</li>
<li>Add a property name, select your country and currency then click next</li>
<li>Select industry, size, and the intended purpose/s of your website</li>
<li>Choose the &ldquo;Web&rdquo; platform</li>
<li>Enter your website&rsquo;s link/URL and then stream name(Name of your website)</li>
<li>Go down to &ldquo;Tagging Instructions&rdquo; then pick &ldquo;Global Site Tag&rdquo;. Copy that code.</li>
<li>Paste the code you have been given into the head section of your website&rsquo;s source code. Use <a href="https://support.google.com/analytics/answer/10840722?hl=en&amp;utm_id=ad#cms&amp;zippy="><strong>this to find out where to put the code based on your platform</strong></a><strong>.</strong></li>
</ol>
<h3 id="easier-way-use-google-site-kit">Easier way: Use <a href="https://sitekit.withgoogle.com/">Google Site Kit</a></h3>
<p>But this may slow down your site according to some people I&rsquo;ve spoken to or read reviews.</p>
<h3 id="easiest-way-contact-me">Easiest way: <a href="/contact">Contact me</a></h3>
<p>That&rsquo;s it. You have successfully set up Google Analytics. Give it an hour then go to <a href="https://analytics.google.com">Google Analytics</a> to start seeing the data.</p>
<p>See you soon</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/ga.webp" medium="image"/></item><item><title>How To Buy Your First NFT Web 3.0 Domain: Ethereum Naming Service</title><link>https://ajulu.netlify.app/posts/the-second-way-to-buy-your-first-nft-web-3.0-domain-ethereum-naming-service/</link><pubDate>Mon, 27 Dec 2021 14:11:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-second-way-to-buy-your-first-nft-web-3.0-domain-ethereum-naming-service/</guid><description>&lt;h3 id="refresher"&gt;Refresher&lt;/h3&gt;
&lt;p&gt;NFT domains are domains that live on a public blockchain and give users complete ownership of their stored data. The main benefits to owning one are simplifying crypto transactions by replacing long complicated wallet addresses with the domain name and easily creating and hosting websites on web3.&lt;/p&gt;
&lt;h3 id="what-is-the-ethereum-naming-service"&gt;What is the Ethereum Naming Service?&lt;/h3&gt;
&lt;p&gt;Ethereum Name Service is a blockchain protocol for users who want to have their own unique and memorable usernames over Web 3.0. Using the service allows you to nail all of your wallet addresses and decentralized websites to a single unique name. For instance, “alice.ETH.” This makes you more recognizable and easier to find across the decentralized space.&lt;/p&gt;</description><content:encoded><![CDATA[<h3 id="refresher">Refresher</h3>
<p>NFT domains are domains that live on a public blockchain and give users complete ownership of their stored data. The main benefits to owning one are simplifying crypto transactions by replacing long complicated wallet addresses with the domain name and easily creating and hosting websites on web3.</p>
<h3 id="what-is-the-ethereum-naming-service">What is the Ethereum Naming Service?</h3>
<p>Ethereum Name Service is a blockchain protocol for users who want to have their own unique and memorable usernames over Web 3.0. Using the service allows you to nail all of your wallet addresses and decentralized websites to a single unique name. For instance, “alice.ETH.” This makes you more recognizable and easier to find across the decentralized space.</p>
<p>The service also allows you to use your domain name to create a decentralized website or to link an existing domain to your <strong>Ethereum</strong> (CCC:<a href="https://investorplace.com/cryptocurrency/eth-usd/"><strong>ETH-USD</strong></a>) wallet.</p>
<h3 id="how-to-buy-an-eth-domain">How to buy an &ldquo;.ETH&rdquo; domain?</h3>
<p>How to Register Your First &ldquo;.ETH&rdquo; Domain</p>
<ol>
<li>Go to <a href="https://app.ens.domains" title="https://app.ens.domains">https://app.ens.domains</a></li>
<li>Use the search bar to find a domain you want.</li>
<li>Tap on your chosen name to see an estimate of how much it will cost.</li>
<li>Get a free Ethereum wallet. I recommend <a href="https://rainbow.me">Rainbow</a> or <a href="https://metamask.io/">MetaMask</a></li>
<li>Buy enough Ethereum using the wallet to cover the cost of your domain (add a little extra just in case)</li>
<li>Go back to the ENS domain website, click the menu in the top right and connect your new wallet.</li>
<li>Once connected, you’ll be able to click the blue “Request to Register” button on the domain.</li>
<li>Open your wallet &amp; confirm the first transaction request. The transaction may take a few minutes, and then you’ll see a 1-minute countdown begin on the ENS site.</li>
<li>After the 1-minute countdown is done, you’ll be able to finalize your registration. Click the register button to initiate a transaction in your wallet.</li>
<li>Confirm the transaction in your wallet, then wait for it to complete.</li>
<li>You now have your very own ENS name! Congratulations!</li>
<li>Lastly, go to your account on the ENS website and set your reverse record to the new name you&rsquo;ve purchased.</li>
</ol>
<p>You can now use your &ldquo;.ETH&rdquo; address to send/receive Ethereum and other crypto assets. In the future, it’ll be used for more things too!</p>
<p>If you&rsquo;d like to learn more, go check out the previous article <a href="https://stephenajulu.com/blog/how-to-buy-your-first-nft-web-3.0-domain/"><strong>here</strong></a><strong>.</strong></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/0_r24ox8zwoe0gfp1g.webp" medium="image"/></item><item><title>How To Buy Your First NFT Web 3.0 Domain: Unstoppable Domains</title><link>https://ajulu.netlify.app/posts/how-to-buy-your-first-nft-web-3.0-domain/</link><pubDate>Wed, 22 Dec 2021 13:31:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/how-to-buy-your-first-nft-web-3.0-domain/</guid><description>&lt;p&gt;Today i&amp;rsquo;d like to help you buy your first NFT Web 3.0 domain. We&amp;rsquo;ll talk about what they are, where you can get one and how to buy/use one.&lt;/p&gt;
&lt;p&gt;First,&lt;/p&gt;
&lt;h3 id="what-is-an-nftweb3-domain"&gt;What is an NFT/WEB3 Domain?&lt;/h3&gt;
&lt;p&gt;NFT domains are domains that live on a public blockchain and give users complete ownership of their stored data. The main benefits to owning one are simplifying crypto transactions by replacing long complicated wallet addresses with the domain name and easily creating and hosting websites on web3.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Today i&rsquo;d like to help you buy your first NFT Web 3.0 domain. We&rsquo;ll talk about what they are, where you can get one and how to buy/use one.</p>
<p>First,</p>
<h3 id="what-is-an-nftweb3-domain">What is an NFT/WEB3 Domain?</h3>
<p>NFT domains are domains that live on a public blockchain and give users complete ownership of their stored data. The main benefits to owning one are simplifying crypto transactions by replacing long complicated wallet addresses with the domain name and easily creating and hosting websites on web3.</p>
<p>If you haven’t heard yet, NFT domains are the newest kids on the block(chain) and they have the power to change what we know of as the internet today. But before we dive into all that goodness, let’s take a step back to run through what traditional domains are and define NFTs — that way, you can truly understand the superpowers behind NFT domains.</p>
<p>Typically, you interact with a traditional domain when you type the address (like Twitter.com) into your browser. But did you know traditional domains were originally built to do so much more on the internet? Think of functionalities like email and payments. Hard to believe, right?</p>
<p>But as we can see, traditional domains haven’t progressed much beyond displaying websites. This might be because traditional domains have been controlled by centralized servers since the internet was created. This made it much more difficult for developers to innovate on top of that technology.</p>
<p>Luckily for us, the tech that powers NFT domains (a.k.a. blockchains) opens up a whole new realm of possibilities for us on the web!</p>
<h2 id="what-is-an-nft">What is an NFT?</h2>
<p><em>NFT (non-fungible token): a digital certificate of authenticity used to assign and verify ownership of a unique digital or physical asset. Unlike fungible tokens, NFTs are not interchangeable with one another.</em></p>
<h3 id="how-do-they-work">How Do They Work?</h3>
<p>Great question! NFT domains are essentially a suite of smart contracts, which is a fancy term to describe software written on a public blockchain. This means that instead of one company controlling your data online, the power is transferred back to you as the user. And by being built on blockchains, anyone can look at the data stored there, creating a level of ultimate openness and transparency.</p>
<p>On top of that, there is the benefit of enhanced security — only you hold the power to make updates to your NFT domain, which minimizes worries about servers getting hacked or domains getting stolen.</p>
<p>All that to say, blockchain superpowers give everyone a safer way to surf the internet while also giving control back to you over what gets shared and where it gets shared.</p>
<p><em>Cool, I’m starting to get the power of blockchain but am still not 100% sure what I can DO with an NFT domain?</em></p>
<h3 id="uses-of-an-nft-domain">Uses of an NFT Domain?</h3>
<ol>
<li>Simplify crypto transactions by replacing all your complicated wallet addresses with your domain name as your username.</li>
<li>Use your domain to receive 275+ coins and tokens across multiple blockchain networks.</li>
<li>Login to apps with your domain name as your universal web3 username.</li>
<li>Unlike traditional domains, fully own and control your domain. You buy it once, you own it for life!</li>
<li>Easily create and host websites, ranging from personal websites to NFT galleries.</li>
</ol>
<h3 id="reasons-to-get-one">Reasons to get one?</h3>
<h2 id="1-zero-renewal-fees">#1) Zero Renewal Fees</h2>
<p>Unlike traditional .com domains, you fully own and control your Unstoppable Domain, so you never have to pay renewal fees. Ever. You buy it once, you own it for life!</p>
<h2 id="2-seamless-crypto-payments">#2) Seamless Crypto Payments</h2>
<p>No longer fear your payments getting lost in the ether (pun intended). Instead of copy and pasting your wallet address (which is similar to a bank account number and can look like: 0xc6b0562605d35ee710138402b878ffe6f2e23807), use an Unstoppable Domain as your one-stop-shop username to store all of your wallet addresses for sending and receiving crypto.</p>
<h2 id="3-multi-chain-compatibility">#3) Multi-Chain Compatibility</h2>
<p>Your NFT domain comes with the superpower to receive over 275 supported coins and tokens, with many more on the way! Now you can navigate crypto transactions with ease, regardless of the blockchain network. <a href="https://support.unstoppabledomains.com/support/solutions/articles/48001185621-what-cryptocurrencies-are-currently-supported-"><strong>Browse the complete list of supported cryptocurrencies here.</strong></a></p>
<h2 id="4-decentralized-websites">#4) Decentralized Websites</h2>
<p>Want to create a website on the decentralized web? <a href="https://support.unstoppabledomains.com/support/solutions/articles/48001181925-build-website"><strong>Create one</strong></a> in just a few clicks with our pre-made templates. Own any NFTs? Create a <a href="https://support.unstoppabledomains.com/support/solutions/articles/48001185412-launching-an-nft-gallery"><strong>gallery-style website</strong></a> to show off your favorite collectibles as your collection grows. We&rsquo;ll be adding more features and templates in the future, so stay tuned here.</p>
<h2 id="5-own-your-identity-on-web3">#5) Own Your Identity on Web3</h2>
<p>As the world shifts to web3, it’ll be more important than ever to own your part of the new internet. By owning an Unstoppable Domain, you’ll not only help progress the digital world, you’ll ensure your identity is secured for the next wave of technology.</p>
<h3 id="how-to-get-one">How to get one?</h3>
<ol>
<li>To buy one visit this link and follow the prompts: <a href="https://unstoppabledomains.pxf.io/qnXOv5"><strong>Register for Unstoppable Domains</strong></a><strong>.</strong></li>
</ol>
<p><a href="https://unstoppabledomains.pxf.io/qnXOv5"><img src="/images/unstoppabledomainsad.webp" style="width: 100%; height: auto;"></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/unstoppable-1280x720.webp" medium="image"/></item><item><title>Cryptocurrency, Blockchain, Smart Contract, NFT, Web 3, DeFi and GameFi 101:</title><link>https://ajulu.netlify.app/posts/cryptocurrency-blockchain-smart-contract-nft-web-3-defi-and-gamefi-101-definition/</link><pubDate>Thu, 16 Dec 2021 07:15:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/cryptocurrency-blockchain-smart-contract-nft-web-3-defi-and-gamefi-101-definition/</guid><description>&lt;h3 id="what-is-a-cryptocurrency"&gt;What is a cryptocurrency?&lt;/h3&gt;
&lt;p&gt;A &lt;strong&gt;cryptocurrency&lt;/strong&gt; is any form of currency that exists digitally or virtually and uses cryptography to secure transactions. Cryptocurrencies don&amp;rsquo;t have a central issuing or regulating authority, instead, they use a decentralized system to record transactions and issue new units.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://stephenajulu.com/blog/how-to-buy-your-first-cryptocurrency/"&gt;&lt;strong&gt;Here is how you can buy your first cryptocurrency&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="what-is-blockchain"&gt;What is blockchain?&lt;/h3&gt;
&lt;p&gt;A &lt;strong&gt;blockchain&lt;/strong&gt; is a growing list of records, called &lt;em&gt;blocks&lt;/em&gt;, that are linked together using &lt;a href="https://en.wikipedia.org/wiki/Cryptography" title="Cryptography"&gt;cryptography&lt;/a&gt;. Each block contains a &lt;a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function" title="Cryptographic hash function"&gt;cryptographic hash&lt;/a&gt; of the previous block, a &lt;a href="https://en.wikipedia.org/wiki/Trusted_timestamping" title="Trusted timestamping"&gt;timestamp&lt;/a&gt;, and transaction data (generally represented as a &lt;a href="https://en.wikipedia.org/wiki/Merkle_tree" title="Merkle tree"&gt;Merkle tree&lt;/a&gt;). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks.&lt;/p&gt;</description><content:encoded><![CDATA[<h3 id="what-is-a-cryptocurrency">What is a cryptocurrency?</h3>
<p>A <strong>cryptocurrency</strong> is any form of currency that exists digitally or virtually and uses cryptography to secure transactions. Cryptocurrencies don&rsquo;t have a central issuing or regulating authority, instead, they use a decentralized system to record transactions and issue new units.</p>
<p><a href="https://stephenajulu.com/blog/how-to-buy-your-first-cryptocurrency/"><strong>Here is how you can buy your first cryptocurrency</strong></a></p>
<h3 id="what-is-blockchain">What is blockchain?</h3>
<p>A <strong>blockchain</strong> is a growing list of records, called <em>blocks</em>, that are linked together using <a href="https://en.wikipedia.org/wiki/Cryptography" title="Cryptography">cryptography</a>. Each block contains a <a href="https://en.wikipedia.org/wiki/Cryptographic_hash_function" title="Cryptographic hash function">cryptographic hash</a> of the previous block, a <a href="https://en.wikipedia.org/wiki/Trusted_timestamping" title="Trusted timestamping">timestamp</a>, and transaction data (generally represented as a <a href="https://en.wikipedia.org/wiki/Merkle_tree" title="Merkle tree">Merkle tree</a>). The timestamp proves that the transaction data existed when the block was published in order to get into its hash. As blocks each contain information about the block previous to it, they form a chain, with each additional block reinforcing the ones before it. Therefore, blockchains are resistant to modification of their data because once recorded, the data in any given block cannot be altered retroactively without altering all subsequent blocks.</p>
<p><a href="https://stephenajulu.com/blog/what-is-blockchain-how-does-it-work-blockchain-explained/"><strong>Learn more.</strong></a></p>
<h3 id="what-is-a-smart-contract">What is a smart contract?</h3>
<p>A <strong>smart contract</strong> is a <a href="https://en.wikipedia.org/wiki/Computer_program" title="Computer program">computer program</a> or a <a href="https://en.wikipedia.org/wiki/Transaction_Protocol_Data_Unit" title="Transaction Protocol Data Unit">transaction protocol</a> that is intended to automatically execute, control, or document legally relevant events and actions according to the terms of a <a href="https://en.wikipedia.org/wiki/Contract" title="Contract">contract</a> or an agreement. The objectives of smart contracts are the reduction of need in trusted intermediates, arbitrations, and enforcement costs, fraud losses, as well as the reduction of malicious and accidental exceptions.</p>
<p><a href="https://stephenajulu.com/blog/what-are-smart-contracts-smart-contracts-explained/"><strong>Learn more.</strong></a></p>
<h3 id="what-is-an-nft">What is an NFT?</h3>
<p>A <strong>non-fungible token</strong> (<strong>NFT</strong>) is a unique and non-interchangeable unit of data stored on a digital <a href="https://en.wikipedia.org/wiki/Ledger" title="Ledger">ledger</a> (<a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchain</a>). NFTs can be associated with reproducible digital files such as photos, videos, and audio. NFTs use a digital ledger to provide a public <a href="https://en.wikipedia.org/wiki/Certificate_of_authenticity" title="Certificate of authenticity">certificate of authenticity</a> or <a href="https://en.wikipedia.org/wiki/Title_(property)" title="Title (property)">proof of ownership</a>, but it does not restrict the sharing or copying of the underlying digital file. The lack of interchangeability (<a href="https://en.wikipedia.org/wiki/Fungibility" title="Fungibility">fungibility</a>) distinguishes NFTs from blockchain <a href="https://en.wikipedia.org/wiki/Cryptocurrencies" title="Cryptocurrencies">cryptocurrencies</a>, such as <a href="https://en.wikipedia.org/wiki/Bitcoin" title="Bitcoin">Bitcoin</a>.</p>
<p><a href="https://stephenajulu.com/blog/what-are-nfts-non-fungible-tokens-explained/"><strong>Learn more.</strong></a></p>
<h3 id="what-is-web-3">What is Web 3?</h3>
<p><strong>Web3,</strong> also known as <strong>Web 3.0</strong>, is an idea for a new iteration of the <a href="https://en.wikipedia.org/wiki/Internet" title="Internet">Internet</a> that is based on public <a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchains</a>. The term was coined in 2014 by <a href="https://en.wikipedia.org/wiki/Ethereum" title="Ethereum">Ethereum</a> co-founder <a href="https://en.wikipedia.org/wiki/Gavin_Wood" title="Gavin Wood">Gavin Wood</a>, and the idea gained interest in 2020 and 2021 from <a href="https://en.wikipedia.org/wiki/Cryptocurrency" title="Cryptocurrency">cryptocurrency</a> enthusiasts, large technology companies, and venture capitalist firms.</p>
<p><a href="https://stephenajulu.com/blog/web-3.0-explained-part-1/"><strong>Learn more.</strong></a></p>
<h3 id="what-is-defi">What is DeFi?</h3>
<p><strong>Decentralized finance</strong> (commonly referred to as <strong>DeFi</strong>) is a <a href="https://en.wikipedia.org/wiki/Blockchain" title="Blockchain">blockchain</a>-based form of finance that does not rely on central financial <a href="https://en.wikipedia.org/wiki/Intermediary" title="Intermediary">intermediaries</a> such as <a href="https://en.wikipedia.org/wiki/Brokerage" title="Brokerage">brokerages</a>, <a href="https://en.wikipedia.org/wiki/Exchange_(organized_market)" title="Exchange (organized market)">exchanges</a>, or <a href="https://en.wikipedia.org/wiki/Bank" title="Bank">banks</a> to offer traditional <a href="https://en.wikipedia.org/wiki/Financial_instrument" title="Financial instrument">financial instruments</a>, and instead utilizes <a href="https://en.wikipedia.org/wiki/Smart_contract" title="Smart contract">smart contracts</a> on blockchains, the most common being <a href="https://en.wikipedia.org/wiki/Ethereum" title="Ethereum">Ethereum</a>.[<a href="https://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><em>citation needed</em></a>] DeFi platforms allow people to lend or borrow funds from others, speculate on price movements on a range of assets using derivatives, trade <a href="https://en.wikipedia.org/wiki/Cryptocurrencies" title="Cryptocurrencies">cryptocurrencies</a>, insure against risks, and earn <a href="https://en.wikipedia.org/wiki/Interest" title="Interest">interest</a> in savings-like accounts. DeFi uses a layered architecture and highly composable building blocks.</p>
<p><a href="https://stephenajulu.com/blog/decentralized-finance-defined/"><strong>Learn more.</strong></a></p>
<h3 id="what-is-gamefi">What is GameFi?</h3>
<p><strong>GameFi</strong> is also known as Game Finance, is the gamification of financial systems to create profit from playing play-to-earn crypto games.</p>
<p><a href="https://stephenajulu.com/blog/gamers-assemble-play-games-to-earn-free-crypto/"><strong>Learn more.</strong></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/newhype101definition.webp" medium="image"/></item><item><title>The Importance of Building Your Masculinity</title><link>https://ajulu.netlify.app/posts/the-importance-of-creating-a-masculine-character/</link><pubDate>Sat, 11 Dec 2021 09:51:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-importance-of-creating-a-masculine-character/</guid><description>&lt;p&gt;Hi guys, how are you doing?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NB:&lt;/strong&gt; This article will trigger a lot of people. Continue reading if you would like to learn why and create your masculine character.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;d like to begin by first defining masculinity. What it is and what it&amp;rsquo;s not according to me. Then I&amp;rsquo;ll cover the traits and characteristics you need to integrate and work on.&lt;/p&gt;
&lt;p&gt;I believe greatness is coming to all the people who read this and understand it. Feel free to share your thoughts down below in the comments.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi guys, how are you doing?</p>
<p><strong>NB:</strong> This article will trigger a lot of people. Continue reading if you would like to learn why and create your masculine character.</p>
<p>I&rsquo;d like to begin by first defining masculinity. What it is and what it&rsquo;s not according to me. Then I&rsquo;ll cover the traits and characteristics you need to integrate and work on.</p>
<p>I believe greatness is coming to all the people who read this and understand it. Feel free to share your thoughts down below in the comments.</p>
<h4 id="masculinity">Masculinity</h4>
<p>Masculinity is the lost art of being a strong, confident, intelligent, skillful, and manly character that is focused on the pursuit of an ultimate goal bigger than himself, women, and those around him.</p>
<p>Masculinity is not toxic, aggressive, and overly sexual. On the contrary, it&rsquo;s a man who is in constant pursuit of things far greater than himself. Constantly improving himself and those around him. A true high-value man who is solving problems and creating things for the benefit of himself and others.</p>
<p>A man is destined to be a protector and provider. He understands his roles and follows the ways of his ancestors.</p>
<p>In this age of betas, white knights, simps, and soy boys, a masculine man sets himself apart by being a strong, charismatic, and useful member of society.</p>
<p>Tell me who are the first people to respond and react in times of danger? Who makes up the large percentage of protectors? Who provides the most? Who are the most willing to lay down their lives for others?</p>
<p>Never before has masculinity been this demonized. By no means am I saying that Toxic Masculinity doesn&rsquo;t exist, what I am saying is that a large percentage of so-called feminists have bundled up good/necessary masculinity and toxic masculinity into one thing. Toxic Feminism has made attacking men/masculinity its sole purpose and they are winning! How do I know this? Look at the crime rates. Look at the no of fatherless children. These are the consequences of the erosion of masculinity.</p>
<p>But I like a quote by <a href="https://twitter.com/PathToManliness">The Path To Manliness</a>.</p>
<h4 id="when-the-barbarians-are-at-the-gates-suddenly-masculinity-is-no-longer-toxic">&ldquo;When the barbarians are at the gates, suddenly masculinity is no longer toxic.&rdquo;</h4>
<h3 id="how-to-create-your-own-masculine-character-and-live-up-to-it">How to create your own masculine character and live up to it</h3>
<p>To create one, we first must know the characteristics of one. Here are a few examples. Remember we are working towards becoming a truly high-value man, not faking it. Go against the grain. Pick some characteristics, give yourself a time frame or a deadline then put in the work.</p>
<ul>
<li>Physically, Emotionally and Mentally Strong</li>
<li>Intelligent and Highly Skilled</li>
<li>Calm, Collected, and Stoic</li>
<li>Having the ability to exercise extreme violence but remaining virtuous - A controlled monster. The true meaning of morality, virtue, and humility. <a href="https://www.youtube.com/watch?v=QQ5oqgJWJyw">Definition first coined by Jordan Peterson</a>. A harmless person is not a virtuous person. When a harmless person tastes power, they cease to be virtuous as they become drunk with it and begin showing their true colors.</li>
<li>Self Control</li>
<li>A Risk Taker</li>
<li>Kind and Generous</li>
<li>Playful and Charismatic</li>
<li>Assertive and Dominant but not arrogant</li>
<li>Independence</li>
<li>Leadership</li>
<li>Ambition</li>
<li>Integrity</li>
<li>Socialized</li>
<li>Well Dressed and Groomed</li>
<li>Respectful</li>
<li>Dangerous</li>
<li>Focused</li>
<li>Sexual - At the appropriate time</li>
<li>Mysterious</li>
<li>Capable of transmuting sexual energy instead of spilling it carelessly</li>
</ul>
<p>These are but a few examples. To create your own hyper-masculine character, I&rsquo;d suggest you pick 5 then work on them.</p>
<p>Physical Strength and Virtue are a must. They ensure you are capable of protecting the things that are important to you without being a bully/brute. You don&rsquo;t want to be a brute who bullies people in an attempt to garner respect. You want to be a protector. One who is naturally respected.</p>
<p>Skillfulness ensures you are capable of providing for your family.</p>
<p>Make sure that whatever you pick leads you down a path that will guarantee you can provide and protect. As these 2 things are key.</p>
<p>I am no different from beta males. Growing up mostly fatherless is hurting society.</p>
<p>But I am changing things, I am on the journey of becoming a masculine and high-value man. You have to remember it starts with you. Be the change you want to see in society. Don&rsquo;t just spill your seed carelessly. The world doesn&rsquo;t need more fatherless children, soy boys, betas, simps, and white knights.</p>
<p>It needs masculine role models willing to take the lead.</p>
<p>I am working on myself, constantly trying to put to death the less desirable traits within me. It&rsquo;s a battle. But it&rsquo;s one that I know I can win.</p>
<h1></h1>
<h3 id="what-about-you">What about you?</h3>
<p>I&rsquo;d like to end with a quote: &ldquo;Strong Men and Feminine Women Create Good Times, Good Times Create Soft Men and Masculine Women, Soft Men and Masculine Women Create Hard Times, and Repeat&rdquo; It&rsquo;s a modification of the original quote. Gender roles were created for a purpose. Find out what that purpose is and integrate. We are experiencing gender role reversal and it&rsquo;s causing damage.</p>
<p>Share your thoughts in the comments and if this triggered you, I&rsquo;d like to know why, so do due diligence.</p>
<p>And of course. Do due diligence, raise your testosterone, and research. I&rsquo;ve written a plethora of <a href="https://stephenajulu.com/blog">articles</a> that can help you in your journey. Go read them.</p>
<p>Have a great day!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/simone-pellegrini-l3qg_oblut0-unsplash.webp" medium="image"/></item><item><title>Invest In Web 3.0 By Buying These 5 Cryptocurrencies Now</title><link>https://ajulu.netlify.app/posts/invest-in-web-3.0-by-buying-these-5-cryptocurrencies-now/</link><pubDate>Wed, 08 Dec 2021 16:13:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/invest-in-web-3.0-by-buying-these-5-cryptocurrencies-now/</guid><description>&lt;p&gt;The internet is slowly moving towards blockchain and has had an impact on investors who felt the power and freedom of the decentralized currency. Investors have made huge profits based on the DeFi protocol, and countries are trying to get on their hands on this emerging asset. Amid this is rising Web 3.0. It aims to bring to the internet what DeFi brought to the banking sector. Theoretically, Web 3.0 is the third version of the internet and aims to take back power from large tech companies. The Web 3.0 revolution will take place in the next couple of years, and the credit goes to blockchain technology. So, if you want to invest in the Web 3.0 era, why not headstart with these cryptocurrencies?&lt;/p&gt;</description><content:encoded><![CDATA[<p>The internet is slowly moving towards blockchain and has had an impact on investors who felt the power and freedom of the decentralized currency. Investors have made huge profits based on the DeFi protocol, and countries are trying to get on their hands on this emerging asset. Amid this is rising Web 3.0. It aims to bring to the internet what DeFi brought to the banking sector. Theoretically, Web 3.0 is the third version of the internet and aims to take back power from large tech companies. The Web 3.0 revolution will take place in the next couple of years, and the credit goes to blockchain technology. So, if you want to invest in the Web 3.0 era, why not headstart with these cryptocurrencies?</p>
<p><strong>Helium:</strong> Helium is one of the most popular Web 3.0 cryptocurrencies and is responsible for making the internet accessible to everyone. This project offers a web service designed to compete with ISP giants like Verizon and AT&amp;T.</p>
<p><strong>Polkadot</strong>: If you are not new to the crypto market, then you have probably heard of Polkadot. It is one of the top 10 cryptocurrencies on the market and is a flagship project by the Web 3 Foundation, a Swiss company founded to facilitate a fully functional and user-friendly decentralized web.</p>
<p><strong>Kusama:</strong> Investing in Kusama is almost a roundabout way of investing in Polkadot. It is because Kusama only exists as the companion of the Polkadot network. It has carried out many projects because the network is the benchmark for the success of parachains.</p>
<p><strong>Ocean:</strong> Ocean protocol is a decentralized, blockchain-based data exchange. It functions as a protocol that allows anyone to build their own decentralized data marketplace. Ocean also functions as a utility token, which is used for buying, staking, and selling data for the governance of community funding on the platform.</p>
<p><strong>Filecoin:</strong> As its name suggests, Filecoin is the file cabinet for Web 3.0. The network is decentralized storage that is created to be a safe alternative to centralized cloud storage and also a way to passively earn money. Filecoin wants its users to know that its storage is for anything and everything.</p>
<p>To buy these I suggest you <a href="https://accounts.binance.com/en/register?ref=CL2JFAB6">register at Binance</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/web-3-0.webp" medium="image"/></item><item><title>6 Blockchains With Massive Potential</title><link>https://ajulu.netlify.app/posts/6-cryptocurrencies-blockchains-with-massive-potential/</link><pubDate>Sat, 04 Dec 2021 15:01:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/6-cryptocurrencies-blockchains-with-massive-potential/</guid><description>&lt;ol&gt;
&lt;li&gt;Ethereum(ETH) - Specifically Ethereum 2.0&lt;/li&gt;
&lt;li&gt;Solana(SOL)&lt;/li&gt;
&lt;li&gt;Cardano(ADA)&lt;/li&gt;
&lt;li&gt;Polygon(MATIC)&lt;/li&gt;
&lt;li&gt;Binance Smart Chain(BNB)&lt;/li&gt;
&lt;li&gt;Polkadot(DOT)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;You&amp;rsquo;ll find that these blockchains and cryptocurrencies are being used to create more cryptocurrencies and blockchains. Most are also involved in the metaverse and web 3.0 development.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Buy their cryptocurrencies by registering here:&lt;/strong&gt; &lt;a href="https://accounts.binance.com/en/register?ref=CL2JFAB6"&gt;&lt;strong&gt;BINANCE&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;NB: NOT FINANCIAL ADVICE!&lt;/p&gt;</description><content:encoded><![CDATA[<ol>
<li>Ethereum(ETH) - Specifically Ethereum 2.0</li>
<li>Solana(SOL)</li>
<li>Cardano(ADA)</li>
<li>Polygon(MATIC)</li>
<li>Binance Smart Chain(BNB)</li>
<li>Polkadot(DOT)</li>
</ol>
<p>You&rsquo;ll find that these blockchains and cryptocurrencies are being used to create more cryptocurrencies and blockchains. Most are also involved in the metaverse and web 3.0 development.</p>
<p><strong>Buy their cryptocurrencies by registering here:</strong> <a href="https://accounts.binance.com/en/register?ref=CL2JFAB6"><strong>BINANCE</strong></a></p>
<p>NB: NOT FINANCIAL ADVICE!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/b0ac64ca-9452-4ee2-b6fe-6ecbe8eeaddd.webp" medium="image"/></item><item><title>Web 3.0 Explained Part 1</title><link>https://ajulu.netlify.app/posts/web-3.0-explained-part-1/</link><pubDate>Thu, 25 Nov 2021 10:24:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/web-3.0-explained-part-1/</guid><description>&lt;p&gt;Web 3.0 is the third generation of internet services for websites and applications that will focus on using a machine-based understanding of data to provide a data-driven and Semantic Web. The ultimate goal of Web 3.0 is to create more intelligent, connected, and open websites.&lt;/p&gt;
&lt;p&gt;Web 3.0 has not yet been implemented, so there is no solid definition. It took over ten years to transition from the original web, Web 1.0, to Web 2.0, and it is expected to take just as long, if not longer, to fully implement and reshape the web with Web 3.0. However, the technologies that some people believe are going to make up and ultimately define Web 3.0 are currently being developed. Smart home appliances using wireless networks and the Internet of Things (IoT) are two examples of how Web 3.0 is already impacting technology.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Web 3.0 is the third generation of internet services for websites and applications that will focus on using a machine-based understanding of data to provide a data-driven and Semantic Web. The ultimate goal of Web 3.0 is to create more intelligent, connected, and open websites.</p>
<p>Web 3.0 has not yet been implemented, so there is no solid definition. It took over ten years to transition from the original web, Web 1.0, to Web 2.0, and it is expected to take just as long, if not longer, to fully implement and reshape the web with Web 3.0. However, the technologies that some people believe are going to make up and ultimately define Web 3.0 are currently being developed. Smart home appliances using wireless networks and the Internet of Things (IoT) are two examples of how Web 3.0 is already impacting technology.</p>
<p>If the trend of change is traced from Web 1.0, a static information provider where people read websites but rarely interacted with them, to Web 2.0, an interactive and social web enabling collaboration between users, then it can be assumed that Web 3.0 will change both how websites are made and how people interact with them.</p>
<h3 id="web-30-properties">Web 3.0 properties</h3>
<p>Web 3.0 may be constructed with artificial intelligence (AI), semantic web, and ubiquitous properties in mind. The idea behind using AI comes from the goal of providing faster, more relevant data to end-users. A website using AI should be able to filter through and provide the data it thinks a specific user will find appropriate. Social bookmarking as a search engine can provide better results than Google since the results are websites that have been voted on by users. However, these results can also be manipulated by humans. AI could be used to separate the legitimate results from the falsified, therefore producing results similar to social bookmarking and social media, but without bad feedback.</p>
<p>An artificially intelligent web will also introduce virtual assistants, an element that is already emerging today as an aspect built into a device or through third-party apps.</p>
<p>The idea behind the semantic web is to categorize and store information in a way that helps teach a system what specific data means. In other words, a website should be able to understand words put in search queries the same way a human would, enabling it to generate and share better content. This system will also use AI; semantic web will teach a computer what the data means and then AI will take the information and use it.</p>
<p>Ubiquitous computing refers to embedded processing in everyday objects, which enables the intercommunication of devices in a user’s environment. This is thought to be another property that Web 3.0 will have. The concept is similar to the Internet of Things.</p>
<p>The technologies which will make up these properties include microformats, data mining, natural language search, and machine learning. Web 3.0 will also be more focused on peer-to-peer (P2P) technologies such as blockchain. Other technologies such as open APIs, data formats, and open-sourced software may also be used while developing Web 3.0 applications.</p>
<h3 id="web-30-and-web-20">Web 3.0 and Web 2.0</h3>
<p>Web 2.0 refers to websites and applications that utilize user-generated content for end-users. Web 2.0 is used in many websites today, chiefly focusing on user interactivity and collaboration. Web 2.0 also focused on providing more universal network connectivity and communication channels. The difference between Web 2.0 and 3.0 is that Web 3.0 is more focused on the use of technologies like machine learning and AI to provide relevant content for each user instead of just the content other end users have provided. Web 2.0 essentially allows users to contribute and sometimes collaborate on-site content, while Web 3.0 will most likely turn these jobs over to the semantic web and AI technologies.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/1_xdx6fonpgn2sq0fnmdqh8w.webp" medium="image"/></item><item><title>5 Things Every Man In His 20s Should Do</title><link>https://ajulu.netlify.app/posts/5-things-every-man-in-his-20s-should-do/</link><pubDate>Mon, 22 Nov 2021 05:26:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/5-things-every-man-in-his-20s-should-do/</guid><description>&lt;p&gt;Hi men!&lt;/p&gt;
&lt;p&gt;Here are 5 things you should do in order to set up your life for success and level up.&lt;/p&gt;
&lt;h2 id="1-workout-and-build-your-body"&gt;1. Workout and build your body&lt;/h2&gt;
&lt;p&gt;It goes without saying that self mastery is key to growth.&lt;/p&gt;
&lt;p&gt;So workout, build your body and be physically capable. This alone will separate you from 80% of the planet. Don&amp;rsquo;t become comfortable being unfit and fat.&lt;/p&gt;
&lt;p&gt;Adopt a growth mindset. Yes, you might be fat now but as long as you put in consistent effort, i can assure you that by the end of a month, the gains you&amp;rsquo;ll be seeing will shoot up your testosterone and confidence.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi men!</p>
<p>Here are 5 things you should do in order to set up your life for success and level up.</p>
<h2 id="1-workout-and-build-your-body">1. Workout and build your body</h2>
<p>It goes without saying that self mastery is key to growth.</p>
<p>So workout, build your body and be physically capable. This alone will separate you from 80% of the planet. Don&rsquo;t become comfortable being unfit and fat.</p>
<p>Adopt a growth mindset. Yes, you might be fat now but as long as you put in consistent effort, i can assure you that by the end of a month, the gains you&rsquo;ll be seeing will shoot up your testosterone and confidence.</p>
<p>Plus, you&rsquo;ll be better capable of attracting that girl you think is beyond your level. Think about it!</p>
<h2 id="2-chase-success-and-fulfillment-over-women">2. Chase success and fulfillment over women</h2>
<p>Look, these girls aren&rsquo;t going anywhere. Plus a recent study found that they want the top 10% of men. So instead of chasing a girl who might dump you for that rich bad boy. Become one yourself. Grind and hustle.</p>
<p>Build a set of marketable skills or better yet work on your own business. Build your dreams. You won&rsquo;t regret it. Plus girls will be all over you once you succeed.</p>
<p>So work on yourself. Work on your dreams.</p>
<p>Now, I&rsquo;m not saying &ldquo;Stop looking, stop dating&rdquo;. What I&rsquo;m saying is let success be your primary goal.</p>
<p>My advice is this. Write down 5 things that are most valuable to you.</p>
<p>Here are mine, if you&rsquo;d like an example.</p>
<ol>
<li>God</li>
<li>Family</li>
<li>Wealth and Health(myself)</li>
<li>Friends</li>
<li>Women</li>
</ol>
<p>Most of these women are hypergamous. So stop chasing them all over the place and start working primarily on you.</p>
<p>Chris Brown wasn&rsquo;t kidding, &ldquo;These hoes ain&rsquo;t loyal&rdquo;.</p>
<p>Advice: if you&rsquo;ve got a girl and a kid, please do a DNA test. In a recent study, it was found that 9 out of 25 men are raising children that are not their own. To make this worse, most of these women knew the kid wasn&rsquo;t there&rsquo;s but because they needed a beta/simp who would provide, they lied. So before adding your name on the birth certificate, before marrying. If you have a kid with a girl. GET A DNA TEST! If you found out the kid isn&rsquo;t yours, i suggest you leave but that decision is up to you.</p>
<p>And you better not forget to INVEST your money. I post articles for beginners on how to invest. There&rsquo;s cryptocurrencies, stocks, NFTs, ETFs, bonds, bills, real estate and more. Pick some, research and invest. Simple</p>
<h2 id="3-seek-god">3. Seek God</h2>
<p>Now, the only reason this is no 3 is because, i didn&rsquo;t structure this list but men you need to seek God. You need spirituality.</p>
<h2 id="4-createjoin-a-tribe">4. Create/join a tribe</h2>
<p>Guys, no man is an island, no man stands alone. I have to admit that i am having issues with this, seeing that i am an introvert with social anxiety but i am doing my best. So should you. And hey don&rsquo;t just join any group. Join a tribe of Like Minded Individuals. Ask yourself this &ldquo;Where do i see myself in the next 10/20 years?&rdquo; then join a tribe of people with a similar answer or similar values or even better join a tribe of people who are already where you want to be.</p>
<h2 id="5-never-stop-learning">5. Never stop learning</h2>
<p>Learn more about:</p>
<ol>
<li>Business</li>
<li>Redpill</li>
<li>Masculinity</li>
<li>Investing</li>
<li>Marketable skills</li>
<li>Female psychology</li>
<li>Money and Wealth</li>
<li>Nutrition for men(meat and eggs)</li>
<li>Solving problems</li>
<li>New technologies</li>
</ol>
<p>There&rsquo;s so much you can learn and do. Especially in this information age. Just do it.</p>
<p>Here comes a bonus:</p>
<h2 id="6-journalwrite">6. Journal/Write</h2>
<p>Please men, keep a journal. All great men, men of renowned wrote journals. Write down your thoughts in the morning and evening.</p>
<p>The mental clarity this will give you will leave you astonished wondering why you didn&rsquo;t start early.</p>
<h3 id="what-is-journaling-you">What is journaling you?</h3>
<p>Journaling is the writing down of thoughts for present reflection and future reference.</p>
<p>Journaling allows you to organize your thoughts, document your goals, make life decisions, and even heal from past traumas. It’s truly a powerful tool that when incorporated into your regular routine can provide numerous benefits.</p>
<h3 id="why-should-men-journal">Why Should Men Journal?</h3>
<p>Although many men may scoff at the thought of keeping a journal, many of the greatest visionaries in history had journals: Leonardo Da Vinci, Albert Einstein, Nikola Tesla, and Ernest Hemingway to name a few. Not to mention the numerous benefits from journaling are well-documented.</p>
<h3 id="benefits-of-journaling">Benefits of journaling</h3>
<p>Here are some benefits of journaling</p>
<ul>
<li>Manages stress</li>
<li>Gives you immortality</li>
<li>Allows introspection and reflection</li>
<li>Boosts your mood</li>
<li>Improves memory</li>
<li>Reduces symptoms of anxiety and depression</li>
</ul>
<p>Anyway guys, that&rsquo;s it for now. For those who learn and implement this, &ldquo;Greatness is coming&rdquo;.</p>
<p>Before i go:</p>
<p>Men in their 20s should also dress well, smell good and wear cool shades. That’s why today I’m hooking you up with a 10% discount on quality clothing, fragrance, and eyewear.</p>
<p><a href="https://www.esntls.co/?ref=kuzqn53jomp-"><strong>Visit ESNTLS for top-notch discounted clothing that makes you look great and feel even greater!</strong></a></p>
<p><a href="https://santaluciafragrance.com/?ref=kuzqn53jomp-"><strong>Visit Santa Lucia Fragrance for top-notch discounted perfumes that make you smell great!</strong></a></p>
<p><a href="https://www.jadeblack.co/?ref=kuzqn53jomp-"><strong>Visit JadeBlack for top-note discounted sunglasses and glasses that draw out your game face perfectly!</strong></a></p>
<p>All the men who use my link get 10% off all their products + free shipping(if you live in the US). Bookmark the links for future purchases because I can assure you that you will love these products.</p>
<p>Have a great day.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/matheus-ferrero-tkrrvwxjb_8.webp" medium="image"/></item><item><title>The 3 Cryptocurrencies You Should Definitely Invest In and More</title><link>https://ajulu.netlify.app/posts/the-3-cryptocurrencies-you-should-definitely-invest-in/</link><pubDate>Sat, 20 Nov 2021 14:36:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-3-cryptocurrencies-you-should-definitely-invest-in/</guid><description>&lt;p&gt;Hi there, here are 3 cryptocurrencies I believe you should invest in right now before the end of 2021&lt;/p&gt;
&lt;h2 id="ethereumeth"&gt;Ethereum(ETH)&lt;/h2&gt;
&lt;p&gt;With the advent of &lt;strong&gt;WEB 3.0&lt;/strong&gt; and &lt;strong&gt;Ethereum 2.0&lt;/strong&gt;, Ethereum is set to become the most popular and most used cryptocurrency. Then there&amp;rsquo;s the &lt;strong&gt;Ethereum Naming Service&lt;/strong&gt;. Look just own 0.01 of ETH. Please do. Ethereum is that crypto that has so much potential. It can be used for so many things. Most metaverse tokens are built on Ethereum. Most Defi tokens are built on Ethereum. This should tell you something about the coin. So just make an effort to own this. Even just 0.01 ETH. That&amp;rsquo;s enough.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi there, here are 3 cryptocurrencies I believe you should invest in right now before the end of 2021</p>
<h2 id="ethereumeth">Ethereum(ETH)</h2>
<p>With the advent of <strong>WEB 3.0</strong> and <strong>Ethereum 2.0</strong>, Ethereum is set to become the most popular and most used cryptocurrency. Then there&rsquo;s the <strong>Ethereum Naming Service</strong>. Look just own 0.01 of ETH. Please do. Ethereum is that crypto that has so much potential. It can be used for so many things. Most metaverse tokens are built on Ethereum. Most Defi tokens are built on Ethereum. This should tell you something about the coin. So just make an effort to own this. Even just 0.01 ETH. That&rsquo;s enough.</p>
<h2 id="bitcoinbtc">Bitcoin(BTC)</h2>
<p>Bitcoin is the biggest crypto right now and it still has the potential to grow. Buy it now and forget about it.</p>
<h2 id="metaverse-index-tokenmvi">Metaverse Index Token(MVI)</h2>
<p>The metaverse is hyped right now. I believe it&rsquo;s going to continue to grow. Buy this and you should be good.</p>
<p>Others to include that have potential: Dogecoin, Solana, Decentraland, Binance Coin, Uniswap, Binance USD, and Shiba Inu</p>
<p>NB: This article is not financial advice. Do your research. I recommend you start with Web 3.0, Metaverse, and Defi.</p>
<p>To finalize, if you’d like to invest in the aforementioned cryptocurrencies then invest with Binance and get 5%: <a href="https://www.jadeblack.co/?ref=kuzqn53jomp-"><strong>Buy and Trade Crypto With The Best Exchange: Binance</strong></a></p>
<p>Have a great day everyone!</p>
<p>Photo by <a href="https://unsplash.com/@executium?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Executium</a> on <a href="https://unsplash.com/?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/executium-ltazfutkcl8-unsplash.webp" medium="image"/></item><item><title>The New 1% Elite</title><link>https://ajulu.netlify.app/posts/the-new-1-elite/</link><pubDate>Fri, 19 Nov 2021 11:08:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/the-new-1-elite/</guid><description>&lt;p&gt;Here are the new 1% elite members of society that are silently taking over the world. Are you one of them? if not start striving to become one of them.&lt;/p&gt;
&lt;p&gt;The New 1% are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Self-educated&lt;/strong&gt;: They know that the secret to truly succeeding in this world involves constant self-education.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Highly skilled&lt;/strong&gt;: They take full responsibility for themselves and therefore work on becoming better every day.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Emotionally intelligent&lt;/strong&gt;: They are mature and understand that not everything should be taken seriously. They know how to control their emotions and reactions. They also know the right time for rage, anger, and sadness.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fit and physically capable&lt;/strong&gt;: They are capable of far more than the average and can easily help others when in need because they are constantly mastering their bodies.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;High energy&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Focuses on internal control&lt;/strong&gt;: Because they know we can&amp;rsquo;t control everything.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pays little attention to external&lt;/strong&gt;: Distractions are everywhere. They know that distractions come at a hefty price and hence focus on what is necessary.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Works from anywhere&lt;/strong&gt;: They don&amp;rsquo;t need an office to work at peak levels. They don&amp;rsquo;t need jobs to put food on the table. They want an office and a job but don&amp;rsquo;t need them as they are skilled in the use of the technologies at their disposal.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Builds social leverage&lt;/strong&gt;: Social media for fun? They use it for both fun and profit, knowing which to do at the right time.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Invests money and time:&lt;/strong&gt; They know investing time and money wisely begets more time and money.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Write&lt;/strong&gt;: They journal, write articles, and generally write down their thoughts as they know this is key to becoming more articulate.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Value traditional values&lt;/strong&gt;: They know traditional values were invented for a reason and as such value them.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Get 8 hours of sleep&lt;/strong&gt;: They know sleep is key for a healthy body and brain and hence optimize their sleep ensuring the given time for the body to heal itself.&lt;/li&gt;
&lt;li&gt;Read: They know little and hence build upon existing knowledge by reading books. Especially philosophy and self-improvement. They also value nonfiction.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Love their family&lt;/strong&gt;: They know family is important.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Capable of extreme violence but don&amp;rsquo;t practice&lt;/strong&gt;: They know that there&amp;rsquo;s nothing.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Eat right&lt;/strong&gt;: Their bodies are a symbol of their discipline and as such, they take care of it well by feeding it with the nutrients it needs. Natural and Organic with plenty of meat and animal fats.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Watch what they think/see/hear&lt;/strong&gt;: They know that thoughts are gateways to the soul and as such negative thoughts have a negative influence on their bodies, souls, and reality. They have an abundance mindset.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Have/build/join a &amp;ldquo;tribe&amp;rdquo;&lt;/strong&gt;: They know that no man is an island and hence gather together with like-minded people in order to grow as a community.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Believe in a Supreme Creator&lt;/strong&gt;: Let&amp;rsquo;s be honest, nothing creates itself. Nothing occurs by its self. There has to be a source of creation. I believe this source is God, the creator of Heaven and Earth and since He is the source, he wasn&amp;rsquo;t created and instead just is. He is, He will be and He will always be there for you. I like what He calls Himself: &amp;ldquo;I am that I am&amp;rdquo;. Basically means he existed, he exists and will always exist, there&amp;rsquo;s no beginning to Him and no end. He is the source and He made us in His own image. Hence the reason we are able to &lt;strong&gt;create&lt;/strong&gt; things.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Align yourself with these and I believe you will be elite. Self-respect is key.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Here are the new 1% elite members of society that are silently taking over the world. Are you one of them? if not start striving to become one of them.</p>
<p>The New 1% are:</p>
<ul>
<li><strong>Self-educated</strong>: They know that the secret to truly succeeding in this world involves constant self-education.</li>
<li><strong>Highly skilled</strong>: They take full responsibility for themselves and therefore work on becoming better every day.</li>
<li><strong>Emotionally intelligent</strong>: They are mature and understand that not everything should be taken seriously. They know how to control their emotions and reactions. They also know the right time for rage, anger, and sadness.</li>
<li><strong>Fit and physically capable</strong>: They are capable of far more than the average and can easily help others when in need because they are constantly mastering their bodies.</li>
<li><strong>High energy</strong></li>
<li><strong>Focuses on internal control</strong>: Because they know we can&rsquo;t control everything.</li>
<li><strong>Pays little attention to external</strong>: Distractions are everywhere. They know that distractions come at a hefty price and hence focus on what is necessary.</li>
<li><strong>Works from anywhere</strong>: They don&rsquo;t need an office to work at peak levels. They don&rsquo;t need jobs to put food on the table. They want an office and a job but don&rsquo;t need them as they are skilled in the use of the technologies at their disposal.</li>
<li><strong>Builds social leverage</strong>: Social media for fun? They use it for both fun and profit, knowing which to do at the right time.</li>
<li><strong>Invests money and time:</strong> They know investing time and money wisely begets more time and money.</li>
<li><strong>Write</strong>: They journal, write articles, and generally write down their thoughts as they know this is key to becoming more articulate.</li>
<li><strong>Value traditional values</strong>: They know traditional values were invented for a reason and as such value them.</li>
<li><strong>Get 8 hours of sleep</strong>: They know sleep is key for a healthy body and brain and hence optimize their sleep ensuring the given time for the body to heal itself.</li>
<li>Read: They know little and hence build upon existing knowledge by reading books. Especially philosophy and self-improvement. They also value nonfiction.</li>
<li><strong>Love their family</strong>: They know family is important.</li>
<li><strong>Capable of extreme violence but don&rsquo;t practice</strong>: They know that there&rsquo;s nothing.</li>
<li><strong>Eat right</strong>: Their bodies are a symbol of their discipline and as such, they take care of it well by feeding it with the nutrients it needs. Natural and Organic with plenty of meat and animal fats.</li>
<li><strong>Watch what they think/see/hear</strong>: They know that thoughts are gateways to the soul and as such negative thoughts have a negative influence on their bodies, souls, and reality. They have an abundance mindset.</li>
<li><strong>Have/build/join a &ldquo;tribe&rdquo;</strong>: They know that no man is an island and hence gather together with like-minded people in order to grow as a community.</li>
<li><strong>Believe in a Supreme Creator</strong>: Let&rsquo;s be honest, nothing creates itself. Nothing occurs by its self. There has to be a source of creation. I believe this source is God, the creator of Heaven and Earth and since He is the source, he wasn&rsquo;t created and instead just is. He is, He will be and He will always be there for you. I like what He calls Himself: &ldquo;I am that I am&rdquo;. Basically means he existed, he exists and will always exist, there&rsquo;s no beginning to Him and no end. He is the source and He made us in His own image.  Hence the reason we are able to <strong>create</strong> things.</li>
</ul>
<p>Align yourself with these and I believe you will be elite. Self-respect is key.</p>
<p>The New 1% also dress well, smell good and wear cool shades. That&rsquo;s why today I&rsquo;m hooking you up with a 10% discount on quality clothing, fragrance, and eyewear.</p>
<p><a href="https://www.esntls.co/?ref=kuzqn53jomp-"><strong>Visit ESNTLS for top-notch discounted clothing that makes you look great and feel even greater!</strong></a></p>
<p><a href="https://santaluciafragrance.com/?ref=kuzqn53jomp-"><strong>Visit Santa Lucia Fragrance for top-notch discounted perfumes that make you smell great!</strong></a></p>
<p><a href="https://www.jadeblack.co/?ref=kuzqn53jomp-"><strong>Visit JadeBlack for top-note discounted sunglasses and glasses that draw out your game face perfectly!</strong></a></p>
<p>All the people who use my link get 10% off all their products + free shipping(if you live in the US). Bookmark the links for future purchases because I can assure you that you will love these products.</p>
<p>Have a great day.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/helena-lopes-uze35tk5uoa-unsplash.webp" medium="image"/></item><item><title>High Value In-Demand Skills</title><link>https://ajulu.netlify.app/posts/high-value-in-demand-skills/</link><pubDate>Thu, 02 Sep 2021 12:28:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/high-value-in-demand-skills/</guid><description>&lt;p&gt;Let me start by saying this, &amp;ldquo;Every skill you acquire doubles your chances of success&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Here are a few high-value high-income in-demand skills:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Public speaking&lt;/li&gt;
&lt;li&gt;Copywriting&lt;/li&gt;
&lt;li&gt;Persuasion &amp;amp; Negotiation&lt;/li&gt;
&lt;li&gt;Psychology&lt;/li&gt;
&lt;li&gt;Business writing&lt;/li&gt;
&lt;li&gt;Accounting&lt;/li&gt;
&lt;li&gt;Design (the basics)&lt;/li&gt;
&lt;li&gt;Conversation&lt;/li&gt;
&lt;li&gt;Overcoming shyness&lt;/li&gt;
&lt;li&gt;Second language&lt;/li&gt;
&lt;li&gt;Golf&lt;/li&gt;
&lt;li&gt;Proper grammar&lt;/li&gt;
&lt;li&gt;Persuasion&lt;/li&gt;
&lt;li&gt;Technology (hobby level)&lt;/li&gt;
&lt;li&gt;Proper voice technique&lt;/li&gt;
&lt;li&gt;Time management&lt;/li&gt;
&lt;li&gt;Creativity&lt;/li&gt;
&lt;li&gt;Collaboration&lt;/li&gt;
&lt;li&gt;Search Engine Optimization&lt;/li&gt;
&lt;li&gt;Search Engine Marketing&lt;/li&gt;
&lt;li&gt;Digital Marketing&lt;/li&gt;
&lt;li&gt;Web Development&lt;/li&gt;
&lt;li&gt;App Development&lt;/li&gt;
&lt;li&gt;Cloud computing&lt;/li&gt;
&lt;li&gt;Sales&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Photo by &lt;a href="https://unsplash.com/@priscilladupreez?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Priscilla Du Preez&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/skills?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/p&gt;</description><content:encoded><![CDATA[<p>Let me start by saying this, &ldquo;Every skill you acquire doubles your chances of success&rdquo;</p>
<p>Here are a few high-value high-income in-demand skills:</p>
<ol>
<li>Public speaking</li>
<li>Copywriting</li>
<li>Persuasion &amp; Negotiation</li>
<li>Psychology</li>
<li>Business writing</li>
<li>Accounting</li>
<li>Design (the basics)</li>
<li>Conversation</li>
<li>Overcoming shyness</li>
<li>Second language</li>
<li>Golf</li>
<li>Proper grammar</li>
<li>Persuasion</li>
<li>Technology (hobby level)</li>
<li>Proper voice technique</li>
<li>Time management</li>
<li>Creativity</li>
<li>Collaboration</li>
<li>Search Engine Optimization</li>
<li>Search Engine Marketing</li>
<li>Digital Marketing</li>
<li>Web Development</li>
<li>App Development</li>
<li>Cloud computing</li>
<li>Sales</li>
</ol>
<p>Photo by <a href="https://unsplash.com/@priscilladupreez?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Priscilla Du Preez</a> on <a href="https://unsplash.com/s/photos/skills?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/priscilla-du-preez-xkkcui44im0-unsplash.webp" medium="image"/></item><item><title>13 Books All Men Should Read(Updated)</title><link>https://ajulu.netlify.app/posts/13-books-all-men-should-read-updated/</link><pubDate>Sun, 08 Aug 2021 15:23:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/13-books-all-men-should-read-updated/</guid><description>&lt;p&gt;Here are the 13 books I recommend to all men that will change your life and help you level up.&lt;/p&gt;
&lt;p&gt;This is a quick list. International links are affiliate links from Amazon and the local links are from Jumia. I get a commission from both.&lt;/p&gt;
&lt;h3 id="0-the-bible-a-must-read"&gt;0. The Bible &lt;em&gt;(A MUST READ)&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/0785215891/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0785215891&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=4a6c9248520c62053a1357da46b2d3fa"&gt;International(Amazon)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fgeneric-kjv-ultrathin-reference-bible-29411897.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="1-the-daily-stoic"&gt;1. The Daily Stoic&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/0735211736/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0735211736&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=6f51a190559969f66f8ac8c4d5c98427"&gt;International(Amazon)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fqusoma-library-bookshop-the-daily-stoic-ryan-holiday-and-stephen-hanselman-10763051.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="2-the-rational-male"&gt;2. The Rational Male&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/1492777862/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1492777862&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=0eb589827cd706f1a3f099fa5fc773b5"&gt;International&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-rational-male-by-rollo-tomassi-43618516.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="3-12-rules-for-life"&gt;3. 12 Rules for Life&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;</description><content:encoded><![CDATA[<p>Here are the 13 books I recommend to all men that will change your life and help you level up.</p>
<p>This is a quick list. International links are affiliate links from Amazon and the local links are from Jumia. I get a commission from both.</p>
<h3 id="0-the-bible-a-must-read">0. The Bible <em>(A MUST READ)</em></h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0785215891/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0785215891&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=4a6c9248520c62053a1357da46b2d3fa">International(Amazon)</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fgeneric-kjv-ultrathin-reference-bible-29411897.html">Local(Kenya)</a></p>
<h3 id="1-the-daily-stoic">1. The Daily Stoic</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0735211736/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0735211736&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=6f51a190559969f66f8ac8c4d5c98427">International(Amazon)</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fqusoma-library-bookshop-the-daily-stoic-ryan-holiday-and-stephen-hanselman-10763051.html">Local(Kenya)</a></p>
<h3 id="2-the-rational-male">2. The Rational Male</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/1492777862/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1492777862&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=0eb589827cd706f1a3f099fa5fc773b5">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-rational-male-by-rollo-tomassi-43618516.html">Local(Kenya)</a></p>
<h3 id="3-12-rules-for-life">3. 12 Rules for Life</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B01FPGY5T0/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01FPGY5T0&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=1fe13e9546d565591edb8c9cd5a026dd">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-12-rules-for-life-an-antidote-to-chaos-by-jordan-peterson-44827946.html">Local(Kenya)</a></p>
<h3 id="4-no-more-mr-nice-guy">4. No More Mr. Nice Guy</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0762415339/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0762415339&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=3ccf82980a06d1935890f02efd3d883a">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-no-more-mr.-nice-guy-43763449.html">Local(Kenya)</a></p>
<h3 id="5-the-way-of-the-superior-man">5. The Way of The Superior Man</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B07FXZBYJ9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07FXZBYJ9&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=b72a70ad0f73a2288f1382a1f7120f65">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-way-of-the-superior-man-43826076.html">Local(Kenya)</a></p>
<h3 id="6-48-laws-of-power-by-robert-green">6. 48 Laws of Power by Robert Green</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0140280197/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0140280197&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=9ea80ad0ef7a5394e90a60222c73559f">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-48-laws-of-power-small-concise-30833109.html">Local(Kenya)</a></p>
<h3 id="8-the-subtle-art-of-not-giving-a-fuck">8. The Subtle Art of Not Giving A Fuck</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0062457713/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0062457713&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=4aa1389c97334e746e40832c22130c5d">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-subtle-art-of-not-giving-a-fck-book-by-mark-manson-43894331.html">Local(Kenya)</a></p>
<h3 id="9-the-art-of-war-by-sun-tzu">9. The Art of War by Sun Tzu</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/1599869772/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1599869772&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=c5344525330bb325b4cce4128fc1fda4">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-art-of-war-43191206.html">Local(Kenya)</a></p>
<h3 id="10-100-deadly-skills">10. 100 Deadly Skills</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B00UDCI5FC/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00UDCI5FC&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=51debb9423c2412a1f5dcfe10987d80e">International</a></p>
<h3 id="11-the-illustrated-art-of-manliness">11. The Illustrated Art of Manliness</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0316362654/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0316362654&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=bf28510b7a0f8db12d730522d573fe7a">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-art-of-manliness-classic-skills-for-the-modern-man-44554711.html">Local(Kenya)</a></p>
<h3 id="12-models-by-mark-manson">12. Models by Mark Manson</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/1463750358/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1463750358&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=24f5a72b07f1f24edd6ae907bc5d0781">International</a></p>
<h3 id="bonus-13-the-4-books-of-robert-greenethe-art-of-seduction-mastery-the-50th-law-the-laws-of-human-nature">Bonus 13. The 4 Books of Robert Greene(The Art of Seduction, Mastery, The 50th Law, The Laws of Human Nature)</h3>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/thought-catalog-o0qqw21-0ni-unsplash.webp" medium="image"/></item><item><title>11 Books All Men Should Read</title><link>https://ajulu.netlify.app/posts/11-books-all-men-should-read/</link><pubDate>Tue, 03 Aug 2021 11:39:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/11-books-all-men-should-read/</guid><description>&lt;p&gt;Here are the 11 books I recommend to all men that will change your life and help you level up.&lt;/p&gt;
&lt;p&gt;This is a quick list. International links are affiliate links from Amazon and the local links are from Jumia. I get a commission from both.&lt;/p&gt;
&lt;h3 id="1-the-daily-stoic"&gt;1. The Daily Stoic&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/0735211736/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0735211736&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=6f51a190559969f66f8ac8c4d5c98427"&gt;International(Amazon)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fqusoma-library-bookshop-the-daily-stoic-ryan-holiday-and-stephen-hanselman-10763051.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="2-the-rational-male"&gt;2. The Rational Male&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/1492777862/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1492777862&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=0eb589827cd706f1a3f099fa5fc773b5"&gt;International&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-rational-male-by-rollo-tomassi-43618516.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="3-12-rules-for-life"&gt;3. 12 Rules for Life&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.amazon.com/gp/product/B01FPGY5T0/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B01FPGY5T0&amp;amp;linkCode=as2&amp;amp;tag=stephenajulu-20&amp;amp;linkId=1fe13e9546d565591edb8c9cd5a026dd"&gt;International&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-12-rules-for-life-an-antidote-to-chaos-by-jordan-peterson-44827946.html"&gt;Local(Kenya)&lt;/a&gt;&lt;/p&gt;
&lt;h3 id="4-no-more-mr-nice-guy"&gt;4. No More Mr. Nice Guy&lt;/h3&gt;
&lt;p&gt;Buy:&lt;/p&gt;</description><content:encoded><![CDATA[<p>Here are the 11 books I recommend to all men that will change your life and help you level up.</p>
<p>This is a quick list. International links are affiliate links from Amazon and the local links are from Jumia. I get a commission from both.</p>
<h3 id="1-the-daily-stoic">1. The Daily Stoic</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0735211736/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0735211736&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=6f51a190559969f66f8ac8c4d5c98427">International(Amazon)</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fqusoma-library-bookshop-the-daily-stoic-ryan-holiday-and-stephen-hanselman-10763051.html">Local(Kenya)</a></p>
<h3 id="2-the-rational-male">2. The Rational Male</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/1492777862/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1492777862&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=0eb589827cd706f1a3f099fa5fc773b5">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-rational-male-by-rollo-tomassi-43618516.html">Local(Kenya)</a></p>
<h3 id="3-12-rules-for-life">3. 12 Rules for Life</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B01FPGY5T0/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01FPGY5T0&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=1fe13e9546d565591edb8c9cd5a026dd">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-12-rules-for-life-an-antidote-to-chaos-by-jordan-peterson-44827946.html">Local(Kenya)</a></p>
<h3 id="4-no-more-mr-nice-guy">4. No More Mr. Nice Guy</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0762415339/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0762415339&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=3ccf82980a06d1935890f02efd3d883a">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-no-more-mr.-nice-guy-43763449.html">Local(Kenya)</a></p>
<h3 id="5-the-way-of-the-superior-man">5. The Way of The Superior Man</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B07FXZBYJ9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07FXZBYJ9&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=b72a70ad0f73a2288f1382a1f7120f65">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-way-of-the-superior-man-43826076.html">Local(Kenya)</a></p>
<h3 id="6-48-laws-of-power-by-robert-green">6. 48 Laws of Power by Robert Green</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0140280197/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0140280197&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=9ea80ad0ef7a5394e90a60222c73559f">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-48-laws-of-power-small-concise-30833109.html">Local(Kenya)</a></p>
<h3 id="8-the-subtle-art-of-not-giving-a-fuck">8. The Subtle Art of Not Giving A Fuck</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0062457713/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0062457713&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=4aa1389c97334e746e40832c22130c5d">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-subtle-art-of-not-giving-a-fck-book-by-mark-manson-43894331.html">Local(Kenya)</a></p>
<h3 id="9-the-art-of-war-by-sun-tzu">9. The Art of War by Sun Tzu</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/1599869772/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1599869772&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=c5344525330bb325b4cce4128fc1fda4">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-art-of-war-43191206.html">Local(Kenya)</a></p>
<h3 id="10-100-deadly-skills">10. 100 Deadly Skills</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/B00UDCI5FC/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00UDCI5FC&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=51debb9423c2412a1f5dcfe10987d80e">International</a></p>
<h3 id="11-the-illustrated-art-of-manliness">11. The Illustrated Art of Manliness</h3>
<p>Buy:</p>
<p><a href="https://www.amazon.com/gp/product/0316362654/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0316362654&amp;linkCode=as2&amp;tag=stephenajulu-20&amp;linkId=bf28510b7a0f8db12d730522d573fe7a">International</a></p>
<p><a href="https://kol.jumia.com/api/click/custom/b60029f6-9eb7-4fab-b6b9-7698d536aef4/0e1c47ed-cc97-3a21-846e-3217fd1ea92a?r=https%3A%2F%2Fwww.jumia.co.ke%2Fjumia-books-the-art-of-manliness-classic-skills-for-the-modern-man-44554711.html">Local(Kenya)</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/daria-nepriakhina-xy55bl5mzam-unsplash.webp" medium="image"/></item><item><title>Ajulu's Thoughts Tech Stack</title><link>https://ajulu.netlify.app/posts/ajulu-s-thoughts-tech-stack/</link><pubDate>Sun, 27 Jun 2021 16:00:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/ajulu-s-thoughts-tech-stack/</guid><description>&lt;p&gt;Hi, there!&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;d like to share a list of resources that helped me build/run this blog.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s the list of things I used&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://gohugo.io/"&gt;Hugo&lt;/a&gt; - A static site JAMstack generator built on Golang&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/forestryio/hugo-theme-novela"&gt;Novela by Narative&lt;/a&gt; - A theme ported over from Gatsby to Hugo&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.netlify.com/"&gt;Netlify&lt;/a&gt; - For continuous deployment and &amp;ldquo;hosting&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://forestry.io/"&gt;Forestry CMS&lt;/a&gt; - For editing and creating posts. Headless CMS&lt;/li&gt;
&lt;li&gt;&lt;a href="https://convertkit.com/"&gt;ConvertKit&lt;/a&gt; - Funnel + Newsletter Pop Up Form&lt;/li&gt;
&lt;li&gt;&lt;a href=""&gt;Substack&lt;/a&gt; - Newsletter service provider&lt;/li&gt;
&lt;li&gt;&lt;a href="https://umami.is/"&gt;Umami&lt;/a&gt; - Self Hosted Web Analytics and Tracking&lt;/li&gt;
&lt;li&gt;&lt;a href="https://uphold.com/"&gt;Uphold&lt;/a&gt; - Web Monetization API and Payment Handler&lt;/li&gt;
&lt;li&gt;&lt;a href="https://commento.io/"&gt;Commento&lt;/a&gt; - Comments&lt;/li&gt;
&lt;li&gt;&lt;a href="https://jsonformatter.curiousconcept.com/"&gt;JSON Formatter&lt;/a&gt; - JSON format and validator&lt;/li&gt;
&lt;li&gt;&lt;a href="https://pwastarter.com/"&gt;PWAStarter&lt;/a&gt; - Icon, Splashscreen, and Manifest JSON Generator&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.pwabuilder.com/"&gt;PWABuilder&lt;/a&gt; - Advanced Service Worker Snippet + 2D Inking(Drawing) Web Component&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.cloudflare.com/"&gt;Cloudflare&lt;/a&gt; - DNS, DOS Protection and Content Delivery Network&lt;/li&gt;
&lt;li&gt;&lt;a href="https://aws.amazon.com/cloudfront/"&gt;Cloudfront&lt;/a&gt; - Image Content Delivery Network provided by Netlify(thinking of switching to Cloudinary but seems like too much work)&lt;/li&gt;
&lt;li&gt;&lt;a href="https://clipboardjs.com/"&gt;Clipboard.js&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://prismjs.com/"&gt;Prism&lt;/a&gt; - Syntax Highlighter&lt;/li&gt;
&lt;li&gt;&lt;a href="https://fonts.google.com/"&gt;Google Font API&lt;/a&gt; - For the DM Serif Display font being used in headings&lt;/li&gt;
&lt;li&gt;&lt;a href="https://zapier.com/"&gt;Zapier&lt;/a&gt; - For automatic syndication to social media&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.w3.org/TR/web-share/"&gt;Web Share API&lt;/a&gt; - For a native-like sharing experience&lt;/li&gt;
&lt;li&gt;&lt;a href="https://paypal.com/"&gt;PayPal&lt;/a&gt; - Payment Processor For Support/Contribution Buttons&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.buymeacoffee.com/stephenajulu"&gt;Buy Me Some Coffee&lt;/a&gt; - Same as above&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.buttons.social/"&gt;Buttons Social&lt;/a&gt; - For the share buttons I have&lt;/li&gt;
&lt;li&gt;&lt;a href="https://spark.adobe.com/sp"&gt;Adobe Spark Post&lt;/a&gt; - For the logo&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.amazon.com/b?node=17938598011&amp;amp;pf_rd_r=594G9NXKZ5C6PTZ095EV&amp;amp;pf_rd_p=ca7cc8fd-a737-48a1-91c5-4219cfa25ccb&amp;amp;pd_rd_r=c5e685ba-b552-41f9-a2ec-b2ca367f99ef&amp;amp;pd_rd_w=O0640&amp;amp;pd_rd_wg=SsCPm&amp;amp;ref_=pd_gw_unk&amp;amp;_encoding=UTF8&amp;amp;tag=stephenajulu-20&amp;amp;linkCode=ur2&amp;amp;linkId=df21236c410bb4e7d219a0a35c4de0b0&amp;amp;camp=1789&amp;amp;creative=9325"&gt;Amazon Associates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Jumia Affiliates&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.esntls.co/?ref=kuzqn53jomp-"&gt;ESNTLS Affiliates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.jadeblack.co/?ref=kuzqn53jomp-"&gt;JadeBlack Affiliates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://santaluciafragrance.com/?ref=kuzqn53jomp-"&gt;Santa Lucia Fragrance Affiliates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://accounts.binance.com/en/register?ref=CL2JFAB6"&gt;Binance Refer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://coinbase.com/join/ajulu_v"&gt;Coinbase Refer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://skl.sh/3wxbE9O"&gt;Skillshare Refer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://go.nordvpn.net/aff_c?offer_id=15&amp;amp;aff_id=34778"&gt;NordVPN Affiliates&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://truehost.co.ke/cloud/aff.php?aff=1738"&gt;Truehost Affiliates&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;a href="https://go.nordvpn.net/aff_c?offer_id=15&amp;aff_id=34778&amp;file_id=23" target="_blank"&gt;&lt;img src="https://media.go2speed.org/brand/files/nordvpn/15/300x250v10.gif" width="300" height="250" border="0" /&gt;&lt;/a&gt;&lt;img src="https://go.nordvpn.net/aff_i?offer_id=15&amp;file_id=23&amp;aff_id=34778" width="0" height="0" style="position:absolute;visibility:hidden;" border="0" /&gt;&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi, there!</p>
<p>I&rsquo;d like to share a list of resources that helped me build/run this blog.</p>
<p>Here&rsquo;s the list of things I used</p>
<ol>
<li><a href="https://gohugo.io/">Hugo</a> - A static site JAMstack generator built on Golang</li>
<li><a href="https://github.com/forestryio/hugo-theme-novela">Novela by Narative</a> - A theme ported over from Gatsby to Hugo</li>
<li><a href="https://www.netlify.com/">Netlify</a> - For continuous deployment and &ldquo;hosting&rdquo;</li>
<li><a href="https://forestry.io/">Forestry CMS</a> - For editing and creating posts. Headless CMS</li>
<li><a href="https://convertkit.com/">ConvertKit</a> - Funnel + Newsletter Pop Up Form</li>
<li><a href="">Substack</a> - Newsletter service provider</li>
<li><a href="https://umami.is/">Umami</a> - Self Hosted Web Analytics and Tracking</li>
<li><a href="https://uphold.com/">Uphold</a> - Web Monetization API and Payment Handler</li>
<li><a href="https://commento.io/">Commento</a> - Comments</li>
<li><a href="https://jsonformatter.curiousconcept.com/">JSON Formatter</a> - JSON format and validator</li>
<li><a href="https://pwastarter.com/">PWAStarter</a> - Icon, Splashscreen, and Manifest JSON Generator</li>
<li><a href="https://www.pwabuilder.com/">PWABuilder</a> - Advanced Service Worker Snippet + 2D Inking(Drawing) Web Component</li>
<li><a href="https://www.cloudflare.com/">Cloudflare</a> - DNS, DOS Protection and Content Delivery Network</li>
<li><a href="https://aws.amazon.com/cloudfront/">Cloudfront</a> - Image Content Delivery Network provided  by Netlify(thinking of switching to Cloudinary but seems like too much work)</li>
<li><a href="https://clipboardjs.com/">Clipboard.js</a></li>
<li><a href="https://prismjs.com/">Prism</a> - Syntax Highlighter</li>
<li><a href="https://fonts.google.com/">Google Font API</a> - For the DM Serif Display font being used in headings</li>
<li><a href="https://zapier.com/">Zapier</a> - For automatic syndication to social media</li>
<li><a href="https://www.w3.org/TR/web-share/">Web Share API</a> - For a native-like sharing experience</li>
<li><a href="https://paypal.com/">PayPal</a> - Payment Processor For Support/Contribution Buttons</li>
<li><a href="https://www.buymeacoffee.com/stephenajulu">Buy Me Some Coffee</a> - Same as above</li>
<li><a href="https://www.buttons.social/">Buttons Social</a> - For the share buttons I have</li>
<li><a href="https://spark.adobe.com/sp">Adobe Spark Post</a> - For the logo</li>
<li><a href="https://www.amazon.com/b?node=17938598011&amp;pf_rd_r=594G9NXKZ5C6PTZ095EV&amp;pf_rd_p=ca7cc8fd-a737-48a1-91c5-4219cfa25ccb&amp;pd_rd_r=c5e685ba-b552-41f9-a2ec-b2ca367f99ef&amp;pd_rd_w=O0640&amp;pd_rd_wg=SsCPm&amp;ref_=pd_gw_unk&amp;_encoding=UTF8&amp;tag=stephenajulu-20&amp;linkCode=ur2&amp;linkId=df21236c410bb4e7d219a0a35c4de0b0&amp;camp=1789&amp;creative=9325">Amazon Associates</a></li>
<li>Jumia Affiliates</li>
<li><a href="https://www.esntls.co/?ref=kuzqn53jomp-">ESNTLS Affiliates</a></li>
<li><a href="https://www.jadeblack.co/?ref=kuzqn53jomp-">JadeBlack Affiliates</a></li>
<li><a href="https://santaluciafragrance.com/?ref=kuzqn53jomp-">Santa Lucia Fragrance Affiliates</a></li>
<li><a href="https://accounts.binance.com/en/register?ref=CL2JFAB6">Binance Refer</a></li>
<li><a href="https://coinbase.com/join/ajulu_v">Coinbase Refer</a></li>
<li><a href="https://skl.sh/3wxbE9O">Skillshare Refer</a></li>
<li><a href="https://go.nordvpn.net/aff_c?offer_id=15&amp;aff_id=34778">NordVPN Affiliates</a></li>
<li><a href="https://truehost.co.ke/cloud/aff.php?aff=1738">Truehost Affiliates</a></li>
</ol>
<p><a href="https://go.nordvpn.net/aff_c?offer_id=15&aff_id=34778&file_id=23" target="_blank"><img src="https://media.go2speed.org/brand/files/nordvpn/15/300x250v10.gif" width="300" height="250" border="0" /></a><img src="https://go.nordvpn.net/aff_i?offer_id=15&file_id=23&aff_id=34778" width="0" height="0" style="position:absolute;visibility:hidden;" border="0" /></p>
<p>Get Affordable Hosting With <a href="https://truehost.co.ke/cloud/aff.php?aff=1738">Truehost</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/ajulusthoughtswebcapture.webp" medium="image"/></item><item><title>App of The Week #2</title><link>https://ajulu.netlify.app/posts/app-of-the-week-2/</link><pubDate>Sun, 27 Jun 2021 06:40:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/app-of-the-week-2/</guid><description>&lt;p&gt;Here&amp;rsquo;s the app of the week #2&lt;/p&gt;
&lt;h2 id="simplenote"&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.automattic.simplenote"&gt;Simplenote&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This is a &amp;ldquo;minimal but gets the job done&amp;rdquo; note taking app.&lt;/p&gt;
&lt;p&gt;It was built by Automattic.&lt;/p&gt;
&lt;h2 id="pros"&gt;Pros&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Minimal Interface&lt;/li&gt;
&lt;li&gt;Supports markdown&lt;/li&gt;
&lt;li&gt;Supports exports and backing up&lt;/li&gt;
&lt;li&gt;Is cross platform, so you can sync your notes from Android to windows or Mac&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id="cons"&gt;Cons&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Doesn&amp;rsquo;t support reminders&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And that&amp;rsquo;s it for now, share, subscribe and comment.&lt;/p&gt;
&lt;h3 id="shameless-plug-below-"&gt;&lt;strong&gt;Shameless Plug Below ↓&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Now before you go, kindly go check out these 3 companies&lt;/p&gt;</description><content:encoded><![CDATA[<p>Here&rsquo;s the app of the week #2</p>
<h2 id="simplenote"><a href="https://play.google.com/store/apps/details?id=com.automattic.simplenote">Simplenote</a></h2>
<p>This is a &ldquo;minimal but gets the job done&rdquo; note taking app.</p>
<p>It was built by Automattic.</p>
<h2 id="pros">Pros</h2>
<ol>
<li>Minimal Interface</li>
<li>Supports markdown</li>
<li>Supports exports and backing up</li>
<li>Is cross platform, so you can sync your notes from Android to windows or Mac</li>
</ol>
<h2 id="cons">Cons</h2>
<ol>
<li>Doesn&rsquo;t support reminders</li>
</ol>
<p>And that&rsquo;s it for now, share, subscribe and comment.</p>
<h3 id="shameless-plug-below-"><strong>Shameless Plug Below ↓</strong></h3>
<p>Now before you go, kindly go check out these 3 companies</p>
<ol>
<li><a href="https://www.esntls.co/?ref=kuzqn53jomp-">Esntls</a> - They sell great affordable clothing.</li>
<li><a href="https://www.jadeblack.co/?ref=kuzqn53jomp-">JadeBlack</a> - They create and sell design level glasses(sunglasses and blue light blocking glasses) at affordable prices</li>
<li><a href="https://santaluciafragrance.com/?ref=kuzqn53jomp-">Santa Lucia Fragrance</a> - They sell absolutely amazing perfumes for men</li>
</ol>
<p>Feel free to use my coupon code on the three sites, to get 10% off every purchase, coupon code: STEPHENAJULU</p>
<p>Don’t miss out on JadeBlack’s new product lunch coming out on the 26th of June.</p>
<p>I’d like to introduce Skillshare, a wonderful place to learn all sorts of things from financial literacy to web development and much more. I personally have been learning how to manage my money through a course by Filipa Canelas. Here’s the course’s link: <a href="https://www.skillshare.com/classes/Personal-Finances-%E2%80%94-Manage-your-Money-and-your-Financial-Freedom/1240823317/projects?via=search-layout-grid">Personal Finances - Manage Your Money and Your Financial Freedom</a></p>
<p>To join and receive 1 free month, click here: <a href="https://skl.sh/3wxbE9O">1 Free Premium Month Skillshare</a></p>
<p>Don&rsquo;t forget to pass by here: 
<h5 class="additionalreading">Also Read: <a href=""></a></h5>






</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/adobe_post_20210627_0658040-5932378357381964.webp" medium="image"/></item><item><title>Share This Post</title><link>https://ajulu.netlify.app/posts/simple-web-share-for-hugo/</link><pubDate>Thu, 17 Jun 2021 05:57:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/simple-web-share-for-hugo/</guid><description>&lt;p&gt;Hi guys, if you are a blogger using gohugo. This is for you!&lt;/p&gt;
&lt;p&gt;Can be copied as is.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt; 1
&lt;/span&gt;&lt;span class="lnt"&gt; 2
&lt;/span&gt;&lt;span class="lnt"&gt; 3
&lt;/span&gt;&lt;span class="lnt"&gt; 4
&lt;/span&gt;&lt;span class="lnt"&gt; 5
&lt;/span&gt;&lt;span class="lnt"&gt; 6
&lt;/span&gt;&lt;span class="lnt"&gt; 7
&lt;/span&gt;&lt;span class="lnt"&gt; 8
&lt;/span&gt;&lt;span class="lnt"&gt; 9
&lt;/span&gt;&lt;span class="lnt"&gt; 10
&lt;/span&gt;&lt;span class="lnt"&gt; 11
&lt;/span&gt;&lt;span class="lnt"&gt; 12
&lt;/span&gt;&lt;span class="lnt"&gt; 13
&lt;/span&gt;&lt;span class="lnt"&gt; 14
&lt;/span&gt;&lt;span class="lnt"&gt; 15
&lt;/span&gt;&lt;span class="lnt"&gt; 16
&lt;/span&gt;&lt;span class="lnt"&gt; 17
&lt;/span&gt;&lt;span class="lnt"&gt; 18
&lt;/span&gt;&lt;span class="lnt"&gt; 19
&lt;/span&gt;&lt;span class="lnt"&gt; 20
&lt;/span&gt;&lt;span class="lnt"&gt; 21
&lt;/span&gt;&lt;span class="lnt"&gt; 22
&lt;/span&gt;&lt;span class="lnt"&gt; 23
&lt;/span&gt;&lt;span class="lnt"&gt; 24
&lt;/span&gt;&lt;span class="lnt"&gt; 25
&lt;/span&gt;&lt;span class="lnt"&gt; 26
&lt;/span&gt;&lt;span class="lnt"&gt; 27
&lt;/span&gt;&lt;span class="lnt"&gt; 28
&lt;/span&gt;&lt;span class="lnt"&gt; 29
&lt;/span&gt;&lt;span class="lnt"&gt; 30
&lt;/span&gt;&lt;span class="lnt"&gt; 31
&lt;/span&gt;&lt;span class="lnt"&gt; 32
&lt;/span&gt;&lt;span class="lnt"&gt; 33
&lt;/span&gt;&lt;span class="lnt"&gt; 34
&lt;/span&gt;&lt;span class="lnt"&gt; 35
&lt;/span&gt;&lt;span class="lnt"&gt; 36
&lt;/span&gt;&lt;span class="lnt"&gt; 37
&lt;/span&gt;&lt;span class="lnt"&gt; 38
&lt;/span&gt;&lt;span class="lnt"&gt; 39
&lt;/span&gt;&lt;span class="lnt"&gt; 40
&lt;/span&gt;&lt;span class="lnt"&gt; 41
&lt;/span&gt;&lt;span class="lnt"&gt; 42
&lt;/span&gt;&lt;span class="lnt"&gt; 43
&lt;/span&gt;&lt;span class="lnt"&gt; 44
&lt;/span&gt;&lt;span class="lnt"&gt; 45
&lt;/span&gt;&lt;span class="lnt"&gt; 46
&lt;/span&gt;&lt;span class="lnt"&gt; 47
&lt;/span&gt;&lt;span class="lnt"&gt; 48
&lt;/span&gt;&lt;span class="lnt"&gt; 49
&lt;/span&gt;&lt;span class="lnt"&gt; 50
&lt;/span&gt;&lt;span class="lnt"&gt; 51
&lt;/span&gt;&lt;span class="lnt"&gt; 52
&lt;/span&gt;&lt;span class="lnt"&gt; 53
&lt;/span&gt;&lt;span class="lnt"&gt; 54
&lt;/span&gt;&lt;span class="lnt"&gt; 55
&lt;/span&gt;&lt;span class="lnt"&gt; 56
&lt;/span&gt;&lt;span class="lnt"&gt; 57
&lt;/span&gt;&lt;span class="lnt"&gt; 58
&lt;/span&gt;&lt;span class="lnt"&gt; 59
&lt;/span&gt;&lt;span class="lnt"&gt; 60
&lt;/span&gt;&lt;span class="lnt"&gt; 61
&lt;/span&gt;&lt;span class="lnt"&gt; 62
&lt;/span&gt;&lt;span class="lnt"&gt; 63
&lt;/span&gt;&lt;span class="lnt"&gt; 64
&lt;/span&gt;&lt;span class="lnt"&gt; 65
&lt;/span&gt;&lt;span class="lnt"&gt; 66
&lt;/span&gt;&lt;span class="lnt"&gt; 67
&lt;/span&gt;&lt;span class="lnt"&gt; 68
&lt;/span&gt;&lt;span class="lnt"&gt; 69
&lt;/span&gt;&lt;span class="lnt"&gt; 70
&lt;/span&gt;&lt;span class="lnt"&gt; 71
&lt;/span&gt;&lt;span class="lnt"&gt; 72
&lt;/span&gt;&lt;span class="lnt"&gt; 73
&lt;/span&gt;&lt;span class="lnt"&gt; 74
&lt;/span&gt;&lt;span class="lnt"&gt; 75
&lt;/span&gt;&lt;span class="lnt"&gt; 76
&lt;/span&gt;&lt;span class="lnt"&gt; 77
&lt;/span&gt;&lt;span class="lnt"&gt; 78
&lt;/span&gt;&lt;span class="lnt"&gt; 79
&lt;/span&gt;&lt;span class="lnt"&gt; 80
&lt;/span&gt;&lt;span class="lnt"&gt; 81
&lt;/span&gt;&lt;span class="lnt"&gt; 82
&lt;/span&gt;&lt;span class="lnt"&gt; 83
&lt;/span&gt;&lt;span class="lnt"&gt; 84
&lt;/span&gt;&lt;span class="lnt"&gt; 85
&lt;/span&gt;&lt;span class="lnt"&gt; 86
&lt;/span&gt;&lt;span class="lnt"&gt; 87
&lt;/span&gt;&lt;span class="lnt"&gt; 88
&lt;/span&gt;&lt;span class="lnt"&gt; 89
&lt;/span&gt;&lt;span class="lnt"&gt; 90
&lt;/span&gt;&lt;span class="lnt"&gt; 91
&lt;/span&gt;&lt;span class="lnt"&gt; 92
&lt;/span&gt;&lt;span class="lnt"&gt; 93
&lt;/span&gt;&lt;span class="lnt"&gt; 94
&lt;/span&gt;&lt;span class="lnt"&gt; 95
&lt;/span&gt;&lt;span class="lnt"&gt; 96
&lt;/span&gt;&lt;span class="lnt"&gt; 97
&lt;/span&gt;&lt;span class="lnt"&gt; 98
&lt;/span&gt;&lt;span class="lnt"&gt; 99
&lt;/span&gt;&lt;span class="lnt"&gt;100
&lt;/span&gt;&lt;span class="lnt"&gt;101
&lt;/span&gt;&lt;span class="lnt"&gt;102
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-html" data-lang="html"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;style&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;webshare&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;justify-content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;center&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="kc"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;#&lt;/span&gt;&lt;span class="nn"&gt;tip&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="err"&gt;\&lt;/span&gt;&lt;span class="p"&gt;#&lt;/span&gt;&lt;span class="nn"&gt;tip&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;show&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;block&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;wsbutton&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;border&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;cursor&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;pointer&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;outline&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kp"&gt;-webkit-&lt;/span&gt;&lt;span class="k"&gt;appearance&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;none&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;inline-block&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;position&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;relative&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;padding&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt; &lt;span class="mi"&gt;8&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;top&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;font-size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;15&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;50&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;border-bottom&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt; &lt;span class="kc"&gt;solid&lt;/span&gt; &lt;span class="nb"&gt;rgba&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;28&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;227&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;125&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;0.5&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;background&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;rgba&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;22&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;230&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;137&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mh"&gt;#fff&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;box-shadow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="kt"&gt;px&lt;/span&gt; &lt;span class="nb"&gt;rgba&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;15&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;165&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;60&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;0.1&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;style&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;div&lt;/span&gt; &lt;span class="na"&gt;class&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;webshare&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;p&lt;/span&gt; &lt;span class="na"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;tip&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;Your browser does not support the Web Share API! Try the other share buttons&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;p&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;button&lt;/span&gt; &lt;span class="na"&gt;id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;share&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;class&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;wsbutton&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Share This Post&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;Web Share&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;button&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;div&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kr"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;share&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;e&lt;/span&gt; &lt;span class="p"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;navigator&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;share&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;navigator&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;share&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;title&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;{{ .Title }}&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;text&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;{{ .Params.excerpt }}&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;url&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;{{ .RelPermalink }}&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;})&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="p"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;thanks for sharing&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="k"&gt;catch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;error&lt;/span&gt; &lt;span class="p"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;error&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;error&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="k"&gt;if&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;!&lt;/span&gt;&lt;span class="nx"&gt;navigator&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;share&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;tip&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;className&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;show&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;share&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nx"&gt;addEventListener&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;click&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;share&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Save it as a partial and include it e.g {{ partial &amp;ldquo;share/webshare.html&amp;rdquo; . }}&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi guys, if you are a blogger using gohugo. This is for you!</p>
<p>Can be copied as is.</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">  1
</span><span class="lnt">  2
</span><span class="lnt">  3
</span><span class="lnt">  4
</span><span class="lnt">  5
</span><span class="lnt">  6
</span><span class="lnt">  7
</span><span class="lnt">  8
</span><span class="lnt">  9
</span><span class="lnt"> 10
</span><span class="lnt"> 11
</span><span class="lnt"> 12
</span><span class="lnt"> 13
</span><span class="lnt"> 14
</span><span class="lnt"> 15
</span><span class="lnt"> 16
</span><span class="lnt"> 17
</span><span class="lnt"> 18
</span><span class="lnt"> 19
</span><span class="lnt"> 20
</span><span class="lnt"> 21
</span><span class="lnt"> 22
</span><span class="lnt"> 23
</span><span class="lnt"> 24
</span><span class="lnt"> 25
</span><span class="lnt"> 26
</span><span class="lnt"> 27
</span><span class="lnt"> 28
</span><span class="lnt"> 29
</span><span class="lnt"> 30
</span><span class="lnt"> 31
</span><span class="lnt"> 32
</span><span class="lnt"> 33
</span><span class="lnt"> 34
</span><span class="lnt"> 35
</span><span class="lnt"> 36
</span><span class="lnt"> 37
</span><span class="lnt"> 38
</span><span class="lnt"> 39
</span><span class="lnt"> 40
</span><span class="lnt"> 41
</span><span class="lnt"> 42
</span><span class="lnt"> 43
</span><span class="lnt"> 44
</span><span class="lnt"> 45
</span><span class="lnt"> 46
</span><span class="lnt"> 47
</span><span class="lnt"> 48
</span><span class="lnt"> 49
</span><span class="lnt"> 50
</span><span class="lnt"> 51
</span><span class="lnt"> 52
</span><span class="lnt"> 53
</span><span class="lnt"> 54
</span><span class="lnt"> 55
</span><span class="lnt"> 56
</span><span class="lnt"> 57
</span><span class="lnt"> 58
</span><span class="lnt"> 59
</span><span class="lnt"> 60
</span><span class="lnt"> 61
</span><span class="lnt"> 62
</span><span class="lnt"> 63
</span><span class="lnt"> 64
</span><span class="lnt"> 65
</span><span class="lnt"> 66
</span><span class="lnt"> 67
</span><span class="lnt"> 68
</span><span class="lnt"> 69
</span><span class="lnt"> 70
</span><span class="lnt"> 71
</span><span class="lnt"> 72
</span><span class="lnt"> 73
</span><span class="lnt"> 74
</span><span class="lnt"> 75
</span><span class="lnt"> 76
</span><span class="lnt"> 77
</span><span class="lnt"> 78
</span><span class="lnt"> 79
</span><span class="lnt"> 80
</span><span class="lnt"> 81
</span><span class="lnt"> 82
</span><span class="lnt"> 83
</span><span class="lnt"> 84
</span><span class="lnt"> 85
</span><span class="lnt"> 86
</span><span class="lnt"> 87
</span><span class="lnt"> 88
</span><span class="lnt"> 89
</span><span class="lnt"> 90
</span><span class="lnt"> 91
</span><span class="lnt"> 92
</span><span class="lnt"> 93
</span><span class="lnt"> 94
</span><span class="lnt"> 95
</span><span class="lnt"> 96
</span><span class="lnt"> 97
</span><span class="lnt"> 98
</span><span class="lnt"> 99
</span><span class="lnt">100
</span><span class="lnt">101
</span><span class="lnt">102
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">style</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="p">.</span><span class="nc">webshare</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">justify-content</span><span class="p">:</span> <span class="kc">center</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">display</span><span class="p">:</span><span class="kc">flex</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="p">#</span><span class="nn">tip</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">display</span><span class="p">:</span> <span class="kc">none</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="err">\</span><span class="p">#</span><span class="nn">tip</span><span class="p">.</span><span class="nc">show</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">display</span><span class="p">:</span> <span class="kc">block</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">.</span><span class="nc">wsbutton</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">border</span><span class="p">:</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">padding</span><span class="p">:</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">cursor</span><span class="p">:</span> <span class="kc">pointer</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">outline</span><span class="p">:</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="kp">-webkit-</span><span class="k">appearance</span><span class="p">:</span> <span class="kc">none</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">display</span><span class="p">:</span> <span class="kc">inline-block</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">position</span><span class="p">:</span> <span class="kc">relative</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">padding</span><span class="p">:</span> <span class="mi">10</span><span class="kt">px</span> <span class="mi">8</span><span class="kt">px</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">top</span><span class="p">:</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">font-size</span><span class="p">:</span> <span class="mi">15</span><span class="kt">px</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">border-radius</span><span class="p">:</span> <span class="mi">50</span><span class="kt">px</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">border-bottom</span><span class="p">:</span> <span class="mi">1</span><span class="kt">px</span> <span class="kc">solid</span> <span class="nb">rgba</span><span class="p">(</span><span class="mi">28</span><span class="p">,</span> <span class="mi">227</span><span class="p">,</span> <span class="mi">125</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">background</span><span class="p">:</span> <span class="nb">rgba</span><span class="p">(</span><span class="mi">22</span><span class="p">,</span> <span class="mi">230</span><span class="p">,</span> <span class="mi">137</span><span class="p">,</span> <span class="mi">1</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">color</span><span class="p">:</span> <span class="mh">#fff</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">box-shadow</span><span class="p">:</span> <span class="mi">0</span><span class="kt">px</span> <span class="mi">0</span><span class="kt">px</span> <span class="mi">0</span><span class="kt">px</span> <span class="nb">rgba</span><span class="p">(</span><span class="mi">15</span><span class="p">,</span> <span class="mi">165</span><span class="p">,</span> <span class="mi">60</span><span class="p">,</span> <span class="mf">0.1</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;/</span><span class="nt">style</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">div</span> <span class="na">class</span><span class="o">=</span><span class="s">&#34;webshare&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="p">&lt;</span><span class="nt">p</span> <span class="na">id</span><span class="o">=</span><span class="s">&#34;tip&#34;</span><span class="p">&gt;</span>Your browser does not support the Web Share API! Try the other share buttons<span class="p">&lt;/</span><span class="nt">p</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="p">&lt;</span><span class="nt">button</span> <span class="na">id</span><span class="o">=</span><span class="s">&#34;share&#34;</span> <span class="na">class</span><span class="o">=</span><span class="s">&#34;wsbutton&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Share This Post&#34;</span><span class="p">&gt;</span>Web Share<span class="p">&lt;/</span><span class="nt">button</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;/</span><span class="nt">div</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">script</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="kr">const</span> <span class="nx">share</span> <span class="o">=</span> <span class="nx">e</span> <span class="p">=&gt;</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">if</span> <span class="p">(</span><span class="nx">navigator</span><span class="p">.</span><span class="nx">share</span><span class="p">)</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">    <span class="nx">navigator</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">      <span class="p">.</span><span class="nx">share</span><span class="p">({</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">        <span class="nx">title</span><span class="o">:</span> <span class="s2">&#34;{{ .Title }}&#34;</span><span class="p">,</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">        <span class="nx">text</span><span class="o">:</span> <span class="s2">&#34;{{ .Params.excerpt }}&#34;</span><span class="p">,</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">        <span class="nx">url</span><span class="o">:</span> <span class="s2">&#34;{{ .RelPermalink }}&#34;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">      <span class="p">})</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">      <span class="p">.</span><span class="nx">then</span><span class="p">(()</span> <span class="p">=&gt;</span> <span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="s2">&#34;thanks for sharing&#34;</span><span class="p">))</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">      <span class="p">.</span><span class="k">catch</span><span class="p">(</span><span class="nx">error</span> <span class="p">=&gt;</span> <span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="s2">&#34;error&#34;</span><span class="p">,</span> <span class="nx">error</span><span class="p">));</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">};</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="k">if</span><span class="p">(</span><span class="o">!</span><span class="nx">navigator</span><span class="p">.</span><span class="nx">share</span><span class="p">)</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="nb">document</span><span class="p">.</span><span class="nx">getElementById</span><span class="p">(</span><span class="s1">&#39;tip&#39;</span><span class="p">).</span><span class="nx">className</span> <span class="o">=</span> <span class="s1">&#39;show&#39;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="nb">document</span><span class="p">.</span><span class="nx">getElementById</span><span class="p">(</span><span class="s2">&#34;share&#34;</span><span class="p">).</span><span class="nx">addEventListener</span><span class="p">(</span><span class="s2">&#34;click&#34;</span><span class="p">,</span> <span class="nx">share</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="p">&lt;/</span><span class="nt">script</span><span class="p">&gt;</span>
</span></span></code></pre></td></tr></table>
</div>
</div><p>Save it as a partial and include it e.g {{ partial &ldquo;share/webshare.html&rdquo; . }}</p>
<p>Since I already have a fall back I will not include that here as I already mentioned it in  another post.</p>
<p>Check it out.</p>

<h5 class="additionalreading">Also Read: <a href=""></a></h5>







]]></content:encoded><media:content url="https://ajulu.netlify.app/images/web-share-api-small.webp" medium="image"/></item><item><title>Share on Facebook</title><link>https://ajulu.netlify.app/posts/share-buttons-for-hugo/</link><pubDate>Mon, 14 Jun 2021 14:26:00 +0300</pubDate><guid>https://ajulu.netlify.app/posts/share-buttons-for-hugo/</guid><description>&lt;p&gt;Here&amp;rsquo;s code for ordinary social share buttons. Can be copied as is.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt; 1
&lt;/span&gt;&lt;span class="lnt"&gt; 2
&lt;/span&gt;&lt;span class="lnt"&gt; 3
&lt;/span&gt;&lt;span class="lnt"&gt; 4
&lt;/span&gt;&lt;span class="lnt"&gt; 5
&lt;/span&gt;&lt;span class="lnt"&gt; 6
&lt;/span&gt;&lt;span class="lnt"&gt; 7
&lt;/span&gt;&lt;span class="lnt"&gt; 8
&lt;/span&gt;&lt;span class="lnt"&gt; 9
&lt;/span&gt;&lt;span class="lnt"&gt; 10
&lt;/span&gt;&lt;span class="lnt"&gt; 11
&lt;/span&gt;&lt;span class="lnt"&gt; 12
&lt;/span&gt;&lt;span class="lnt"&gt; 13
&lt;/span&gt;&lt;span class="lnt"&gt; 14
&lt;/span&gt;&lt;span class="lnt"&gt; 15
&lt;/span&gt;&lt;span class="lnt"&gt; 16
&lt;/span&gt;&lt;span class="lnt"&gt; 17
&lt;/span&gt;&lt;span class="lnt"&gt; 18
&lt;/span&gt;&lt;span class="lnt"&gt; 19
&lt;/span&gt;&lt;span class="lnt"&gt; 20
&lt;/span&gt;&lt;span class="lnt"&gt; 21
&lt;/span&gt;&lt;span class="lnt"&gt; 22
&lt;/span&gt;&lt;span class="lnt"&gt; 23
&lt;/span&gt;&lt;span class="lnt"&gt; 24
&lt;/span&gt;&lt;span class="lnt"&gt; 25
&lt;/span&gt;&lt;span class="lnt"&gt; 26
&lt;/span&gt;&lt;span class="lnt"&gt; 27
&lt;/span&gt;&lt;span class="lnt"&gt; 28
&lt;/span&gt;&lt;span class="lnt"&gt; 29
&lt;/span&gt;&lt;span class="lnt"&gt; 30
&lt;/span&gt;&lt;span class="lnt"&gt; 31
&lt;/span&gt;&lt;span class="lnt"&gt; 32
&lt;/span&gt;&lt;span class="lnt"&gt; 33
&lt;/span&gt;&lt;span class="lnt"&gt; 34
&lt;/span&gt;&lt;span class="lnt"&gt; 35
&lt;/span&gt;&lt;span class="lnt"&gt; 36
&lt;/span&gt;&lt;span class="lnt"&gt; 37
&lt;/span&gt;&lt;span class="lnt"&gt; 38
&lt;/span&gt;&lt;span class="lnt"&gt; 39
&lt;/span&gt;&lt;span class="lnt"&gt; 40
&lt;/span&gt;&lt;span class="lnt"&gt; 41
&lt;/span&gt;&lt;span class="lnt"&gt; 42
&lt;/span&gt;&lt;span class="lnt"&gt; 43
&lt;/span&gt;&lt;span class="lnt"&gt; 44
&lt;/span&gt;&lt;span class="lnt"&gt; 45
&lt;/span&gt;&lt;span class="lnt"&gt; 46
&lt;/span&gt;&lt;span class="lnt"&gt; 47
&lt;/span&gt;&lt;span class="lnt"&gt; 48
&lt;/span&gt;&lt;span class="lnt"&gt; 49
&lt;/span&gt;&lt;span class="lnt"&gt; 50
&lt;/span&gt;&lt;span class="lnt"&gt; 51
&lt;/span&gt;&lt;span class="lnt"&gt; 52
&lt;/span&gt;&lt;span class="lnt"&gt; 53
&lt;/span&gt;&lt;span class="lnt"&gt; 54
&lt;/span&gt;&lt;span class="lnt"&gt; 55
&lt;/span&gt;&lt;span class="lnt"&gt; 56
&lt;/span&gt;&lt;span class="lnt"&gt; 57
&lt;/span&gt;&lt;span class="lnt"&gt; 58
&lt;/span&gt;&lt;span class="lnt"&gt; 59
&lt;/span&gt;&lt;span class="lnt"&gt; 60
&lt;/span&gt;&lt;span class="lnt"&gt; 61
&lt;/span&gt;&lt;span class="lnt"&gt; 62
&lt;/span&gt;&lt;span class="lnt"&gt; 63
&lt;/span&gt;&lt;span class="lnt"&gt; 64
&lt;/span&gt;&lt;span class="lnt"&gt; 65
&lt;/span&gt;&lt;span class="lnt"&gt; 66
&lt;/span&gt;&lt;span class="lnt"&gt; 67
&lt;/span&gt;&lt;span class="lnt"&gt; 68
&lt;/span&gt;&lt;span class="lnt"&gt; 69
&lt;/span&gt;&lt;span class="lnt"&gt; 70
&lt;/span&gt;&lt;span class="lnt"&gt; 71
&lt;/span&gt;&lt;span class="lnt"&gt; 72
&lt;/span&gt;&lt;span class="lnt"&gt; 73
&lt;/span&gt;&lt;span class="lnt"&gt; 74
&lt;/span&gt;&lt;span class="lnt"&gt; 75
&lt;/span&gt;&lt;span class="lnt"&gt; 76
&lt;/span&gt;&lt;span class="lnt"&gt; 77
&lt;/span&gt;&lt;span class="lnt"&gt; 78
&lt;/span&gt;&lt;span class="lnt"&gt; 79
&lt;/span&gt;&lt;span class="lnt"&gt; 80
&lt;/span&gt;&lt;span class="lnt"&gt; 81
&lt;/span&gt;&lt;span class="lnt"&gt; 82
&lt;/span&gt;&lt;span class="lnt"&gt; 83
&lt;/span&gt;&lt;span class="lnt"&gt; 84
&lt;/span&gt;&lt;span class="lnt"&gt; 85
&lt;/span&gt;&lt;span class="lnt"&gt; 86
&lt;/span&gt;&lt;span class="lnt"&gt; 87
&lt;/span&gt;&lt;span class="lnt"&gt; 88
&lt;/span&gt;&lt;span class="lnt"&gt; 89
&lt;/span&gt;&lt;span class="lnt"&gt; 90
&lt;/span&gt;&lt;span class="lnt"&gt; 91
&lt;/span&gt;&lt;span class="lnt"&gt; 92
&lt;/span&gt;&lt;span class="lnt"&gt; 93
&lt;/span&gt;&lt;span class="lnt"&gt; 94
&lt;/span&gt;&lt;span class="lnt"&gt; 95
&lt;/span&gt;&lt;span class="lnt"&gt; 96
&lt;/span&gt;&lt;span class="lnt"&gt; 97
&lt;/span&gt;&lt;span class="lnt"&gt; 98
&lt;/span&gt;&lt;span class="lnt"&gt; 99
&lt;/span&gt;&lt;span class="lnt"&gt;100
&lt;/span&gt;&lt;span class="lnt"&gt;101
&lt;/span&gt;&lt;span class="lnt"&gt;102
&lt;/span&gt;&lt;span class="lnt"&gt;103
&lt;/span&gt;&lt;span class="lnt"&gt;104
&lt;/span&gt;&lt;span class="lnt"&gt;105
&lt;/span&gt;&lt;span class="lnt"&gt;106
&lt;/span&gt;&lt;span class="lnt"&gt;107
&lt;/span&gt;&lt;span class="lnt"&gt;108
&lt;/span&gt;&lt;span class="lnt"&gt;109
&lt;/span&gt;&lt;span class="lnt"&gt;110
&lt;/span&gt;&lt;span class="lnt"&gt;111
&lt;/span&gt;&lt;span class="lnt"&gt;112
&lt;/span&gt;&lt;span class="lnt"&gt;113
&lt;/span&gt;&lt;span class="lnt"&gt;114
&lt;/span&gt;&lt;span class="lnt"&gt;115
&lt;/span&gt;&lt;span class="lnt"&gt;116
&lt;/span&gt;&lt;span class="lnt"&gt;117
&lt;/span&gt;&lt;span class="lnt"&gt;118
&lt;/span&gt;&lt;span class="lnt"&gt;119
&lt;/span&gt;&lt;span class="lnt"&gt;120
&lt;/span&gt;&lt;span class="lnt"&gt;121
&lt;/span&gt;&lt;span class="lnt"&gt;122
&lt;/span&gt;&lt;span class="lnt"&gt;123
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-html" data-lang="html"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c"&gt;&amp;lt;!--from https://www.buttons.social--&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}&amp;amp;quote={{ .Title }}%20-%20{{ .Site.Title }}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Share on Facebook&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#3b5998;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:44%;margin:28% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 864 1664&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,-95,1280)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M 959,1524 V 1260 H 802 q -86,0 -116,-36 -30,-36 -30,-108 V 927 H 949 L 910,631 H 656 V -128 H 350 V 631 H 95 v 296 h 255 v 218 q 0,186 104,288.5 104,102.5 277,102.5 147,0 228,-12 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://twitter.com/intent/tweet/?text={{ .Title }}&amp;amp;amp;url={{ .Permalink }}&amp;amp;via=stephenajulu&amp;amp;amp;hashtags={{ .Params.tags }}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Tweet on Twitter&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#1b95e0;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1576 1280&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,-44,1024)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;m 1620,1128 q -67,-98 -162,-167 1,-14 1,-42 0,-130 -38,-259.5 Q 1383,530 1305.5,411 1228,292 1121,200.5 1014,109 863,54.5 712,0 540,0 269,0 44,145 q 35,-4 78,-4 225,0 401,138 -105,2 -188,64.5 -83,62.5 -114,159.5 33,-5 61,-5 43,0 85,11 Q 255,532 181.5,620.5 108,709 108,826 v 4 q 68,-38 146,-41 -66,44 -105,115 -39,71 -39,154 0,88 44,163 Q 275,1072 448.5,982.5 622,893 820,883 q -8,38 -8,74 0,134 94.5,228.5 94.5,94.5 228.5,94.5 140,0 236,-102 109,21 205,78 -37,-115 -142,-178 93,10 186,50 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://reddit.com/submit/?url={{.Permalink}}&amp;amp;amp;resubmit=true&amp;amp;amp;title={{.Title}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Submit to Reddit&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#ff4500;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:46%;margin:26% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1792 1692&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,0,1280)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;m 1792,690 q 0,-58 -29,-105.5 -30,-47.5 -80,-72.5 12,-46 12,-96 0,-155 -106,-287 Q 1482,-3 1298,-79.5 1114,-156 898,-156 682,-156 498.5,-79.5 315,-3 208.5,129 102,261 102,416 q 0,47 11,94 Q 62,535 31,583.5 0,632 0,690 q 0,82 58,140.5 58,58.5 141,58.5 85,0 145,-63 218,152 515,162 l 116,521 q 3,13 15,21 12,8 26,5 l 369,-81 q 18,37 54,60 36,22 79,22 62,0 106,-43 44,-44 44,-106 0,-62 -44,-106 -44,-44 -106,-44 -62,0 -105,44 -44,43 -44,105 l -334,74 -104,-472 q 300,-9 519,-160 58,61 143,61 83,0 141,-58.5 58,-58.5 58,-140.5 z M 418,491 q 0,-62 43.5,-106 43.5,-44 105.5,-44 62,0 106,44 44,44 44,106 0,62 -44,105.5 Q 629,640 567,640 506,640 462,596 418,552 418,491 z m 810,-355 q 11,11 11,26 0,15 -11,26 -10,10 -25,10 -15,0 -26,-10 -41,-42 -121,-62 -80,-20 -160,-20 -80,0 -160,20 -80,20 -121,62 -11,10 -26,10 -15,0 -25,-10 Q 553,178 553,162.5 553,147 564,136 607,93 682.5,68 758,43 805,38.5 852,34 896,34 q 44,0 91,4.5 47,4.5 123,29.5 75,25 118,68 z m -3,205 q 62,0 106,44 43,44 43,106 0,61 -44,105 -44,44 -105,44 -62,0 -106,-43.5 -44,-43.5 -44,-105.5 0,-62 44,-106 44,-44 106,-44 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;whatsapp://send?text={{.Title}}%0D%0A{{ .Summary | truncate 170 }}%0D%0AWritten%20by%20{{.Params.authors}}%0D%0ASource%20{{.Permalink}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Send via WhatsApp&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#43d854;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:44%;margin:28% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1536 1548&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,0,1158)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;m 985,562 q 13,0 98,-44 84,-44 89,-53 2,-5 2,-15 0,-33 -17,-76 -16,-39 -71,-65.5 -55,-26.5 -102,-26.5 -57,0 -190,62 -98,45 -170,118 -72,73 -148,185 -72,107 -71,194 v 8 q 3,91 74,158 24,22 52,22 6,0 18,-1 12,-2 19,-2 19,0 26.5,-6 7.5,-7 15.5,-28 8,-20 33,-88 25,-68 25,-75 0,-21 -34.5,-57.5 Q 599,735 599,725 q 0,-7 5,-15 34,-73 102,-137 56,-53 151,-101 12,-7 22,-7 15,0 54,48.5 39,48.5 52,48.5 z M 782,32 q 127,0 244,50 116,50 200,134 84,84 134,200.5 50,116.5 50,243.5 0,127 -50,243.5 -50,116.5 -134,200.5 -84,84 -200,134 -117,50 -244,50 -127,0 -243.5,-50 Q 422,1188 338,1104 254,1020 204,903.5 154,787 154,660 154,457 274,292 L 195,59 437,136 Q 595,32 782,32 z m 0,1382 q 153,0 293,-60 139,-60 240,-161 101,-101 161,-240.5 Q 1536,813 1536,660 1536,507 1476,367.5 1416,228 1315,127 1214,26 1075,-34 935,-94 782,-94 587,-94 417,0 L 0,-134 136,271 Q 28,449 28,660 q 0,153 60,292.5 60,139.5 161,240.5 101,101 240.5,161 139.5,60 292.5,60 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://telegram.me/share/url?text={{.Title}}%0D%0A{{ .Summary | truncate 170 }}}%0D%0AWritten%20by%20{{.Params.authors}}&amp;amp;amp;url={{.Permalink}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Send via Telegram&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#39a7da;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:42%;margin:29% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1150 817.4&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;m 824.4,511.7 147,-693 c 6,-29.3 3,-50.3 -10,-63 -13,-12.7 -31,-15 -52,-7 L 45.45,81.65 c -19.3,7.3 -32.5,15.7 -39.504,25.05 -7,9.3 -7.8,18.2 -2.5,26.5 5.3,8.3 16.004,14.8 32.004,19.5 l 220.95,69 513,-323 c 14,-9.3 25,-11.3 32,-6 5,3.3 3,8.25 -4,14.95 l -415,375.05 0,0 0,0 -16,228 c 15.3,0 30.3,-7 45,-22 l 108,-104 224,165 c 43,24 70,11 81,-38 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://www.linkedin.com/shareArticle?mini=true&amp;amp;amp;url={{.Permalink}}&amp;amp;amp;title={{.Title}}&amp;amp;amp;summary={{ .Summary }}&amp;amp;amp;source={{.Permalink}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Share on LinkedIn&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#0077b5;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:42%;margin:29% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1536 1468&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,0,1132)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M 349,911 V -80 H 19 v 991 h 330 z m 21,306 q 1,-73 -50.5,-122 Q 268,1046 184,1046 h -2 q -82,0 -132,49 -50,49 -50,122 0,74 51.5,123 51.5,48 134.5,48 83,0 133,-48 50,-49 51,-123 z M 1536,488 V -80 h -329 v 530 q 0,105 -40,164.5 Q 1126,674 1040,674 977,674 934.5,639.5 892,605 871,554 860,524 860,473 V -80 H 531 q 2,399 2,647 0,248 -1,296 l -1,48 H 860 V 767 h -2 q 20,32 41,56 21,24 56.5,52 35.5,28 87.5,43.5 51,15.5 114,15.5 171,0 275,-113.5 Q 1536,707 1536,488 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://mix.com/add?url={{.Permalink}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Add to Mix&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#F3782B;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:38%;margin:31% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 0 448 512&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://pinterest.com/pin/create/button/?url={{.Permalink}}&amp;amp;amp;media={{ .Params.hero | absURL }}&amp;amp;amp;description={{.Description}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Pin on Pinterest&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#E60023;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 0 384 512&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;https://news.ycombinator.com/submitlink?u={{.Permalink}}&amp;amp;t={{.Title}}-{{.Site.Title}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Submit to HackerNews&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#ff4000;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 0 140 140&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;href&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;mailto:?subject={{.Title}}%20%3A%20{{.Permalink}}&amp;amp;amp;body={{ .Summary | truncate 170 }}%0D%0AWritten%20by%20{{.Params.authors}}%0D%0ARead More%3A%20{{.Permalink}}&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Send via Email&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 -256 1792 1408&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;transform&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;matrix(1,0,0,-1,0,1024)&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M 1792,826 V 32 q 0,-66 -47,-113 -47,-47 -113,-47 H 160 Q 94,-128 47,-81 0,-34 0,32 V 826 Q 44,777 101,739 463,493 598,394 655,352 690.5,328.5 726,305 785,280.5 844,256 895,256 h 1 1 q 51,0 110,24.5 59,24.5 94.5,48 35.5,23.5 92.5,65.5 170,123 498,345 57,39 100,87 z m 0,294 q 0,-79 -49,-151 -49,-72 -122,-123 -376,-261 -468,-325 -10,-7 -42.5,-30.5 -32.5,-23.5 -54,-38 Q 1035,438 1004.5,420 974,402 947,393 q -27,-9 -50,-9 h -1 -1 q -23,0 -50,9 -27,9 -57.5,27 -30.5,18 -52,32.5 -21.5,14.5 -54,38 Q 649,514 639,521 548,585 377,703.5 206,822 172,846 110,888 55,961.5 0,1035 0,1098 q 0,78 41.5,130 41.5,52 118.5,52 h 1472 q 65,0 112.5,-47 47.5,-47 47.5,-113 z&amp;#34;&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;onclick&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;window.print()&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Print this&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 0 512 512&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt; &lt;span class="na"&gt;onclick&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;CopyLink()&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;target&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;_blank&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;title&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;Copy Link&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt; &lt;span class="na"&gt;style&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;display:block;fill:#fff;height:36%;margin:32% auto;&amp;#34;&lt;/span&gt; &lt;span class="na"&gt;viewBox&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;0 0 512 512&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;path&lt;/span&gt; &lt;span class="na"&gt;d&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;&amp;#34;M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;a&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c"&gt;&amp;lt;!--end buttons.social--&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;copyTextToClipboard&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;createElement&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;textarea&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;//
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// *** This styling is an extra step which is likely not required. ***
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;//
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// Why is it here? To ensure:
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// 1. the element is able to have focus and selection.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// 2. if element was to flash render it has minimal visual impact.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// 3. less flakyness with selection and copying which **might** occur if
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// the textarea element is not visible.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;//
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// The likelihood is the element won&amp;#39;t even render, not even a flash,
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// so some of these are just precautions. However in IE the element
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// is visible whilst the popup box asking the user for permission for
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// the web page to copy to the clipboard.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;//
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// Place in top-left corner of screen regardless of scroll position.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;position&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;fixed&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;top&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;left&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// Ensure it has a small width and height. Setting to 1px / 1em
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// doesn&amp;#39;t work as this gives a negative w/h on some browsers.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;width&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;2em&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;height&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;2em&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// We don&amp;#39;t need padding, reducing the size if it does flash render.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;padding&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// Clean up any borders.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;border&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;none&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;outline&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;none&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;boxShadow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;none&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="c1"&gt;// Avoid flash of white box if rendered for any reason.
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;background&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;transparent&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;text&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;body&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;appendChild&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;select&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;successful&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;execCommand&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;copy&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;msg&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;successful&lt;/span&gt; &lt;span class="o"&gt;?&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;successful&amp;#39;&lt;/span&gt; &lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;&amp;#39;unsuccessful&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;Copying link command was &amp;#39;&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;msg&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;console&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;log&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;Oops, unable to copy link&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;body&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;removeChild&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;textArea&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;CopyLink&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;copyTextToClipboard&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;location&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;href&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="p"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="nt"&gt;script&lt;/span&gt;&lt;span class="p"&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;</description><content:encoded><![CDATA[<p>Here&rsquo;s code for ordinary social share buttons. Can be copied as is.</p>
<div class="highlight"><div class="chroma">
<table class="lntable"><tr><td class="lntd">
<pre tabindex="0" class="chroma"><code><span class="lnt">  1
</span><span class="lnt">  2
</span><span class="lnt">  3
</span><span class="lnt">  4
</span><span class="lnt">  5
</span><span class="lnt">  6
</span><span class="lnt">  7
</span><span class="lnt">  8
</span><span class="lnt">  9
</span><span class="lnt"> 10
</span><span class="lnt"> 11
</span><span class="lnt"> 12
</span><span class="lnt"> 13
</span><span class="lnt"> 14
</span><span class="lnt"> 15
</span><span class="lnt"> 16
</span><span class="lnt"> 17
</span><span class="lnt"> 18
</span><span class="lnt"> 19
</span><span class="lnt"> 20
</span><span class="lnt"> 21
</span><span class="lnt"> 22
</span><span class="lnt"> 23
</span><span class="lnt"> 24
</span><span class="lnt"> 25
</span><span class="lnt"> 26
</span><span class="lnt"> 27
</span><span class="lnt"> 28
</span><span class="lnt"> 29
</span><span class="lnt"> 30
</span><span class="lnt"> 31
</span><span class="lnt"> 32
</span><span class="lnt"> 33
</span><span class="lnt"> 34
</span><span class="lnt"> 35
</span><span class="lnt"> 36
</span><span class="lnt"> 37
</span><span class="lnt"> 38
</span><span class="lnt"> 39
</span><span class="lnt"> 40
</span><span class="lnt"> 41
</span><span class="lnt"> 42
</span><span class="lnt"> 43
</span><span class="lnt"> 44
</span><span class="lnt"> 45
</span><span class="lnt"> 46
</span><span class="lnt"> 47
</span><span class="lnt"> 48
</span><span class="lnt"> 49
</span><span class="lnt"> 50
</span><span class="lnt"> 51
</span><span class="lnt"> 52
</span><span class="lnt"> 53
</span><span class="lnt"> 54
</span><span class="lnt"> 55
</span><span class="lnt"> 56
</span><span class="lnt"> 57
</span><span class="lnt"> 58
</span><span class="lnt"> 59
</span><span class="lnt"> 60
</span><span class="lnt"> 61
</span><span class="lnt"> 62
</span><span class="lnt"> 63
</span><span class="lnt"> 64
</span><span class="lnt"> 65
</span><span class="lnt"> 66
</span><span class="lnt"> 67
</span><span class="lnt"> 68
</span><span class="lnt"> 69
</span><span class="lnt"> 70
</span><span class="lnt"> 71
</span><span class="lnt"> 72
</span><span class="lnt"> 73
</span><span class="lnt"> 74
</span><span class="lnt"> 75
</span><span class="lnt"> 76
</span><span class="lnt"> 77
</span><span class="lnt"> 78
</span><span class="lnt"> 79
</span><span class="lnt"> 80
</span><span class="lnt"> 81
</span><span class="lnt"> 82
</span><span class="lnt"> 83
</span><span class="lnt"> 84
</span><span class="lnt"> 85
</span><span class="lnt"> 86
</span><span class="lnt"> 87
</span><span class="lnt"> 88
</span><span class="lnt"> 89
</span><span class="lnt"> 90
</span><span class="lnt"> 91
</span><span class="lnt"> 92
</span><span class="lnt"> 93
</span><span class="lnt"> 94
</span><span class="lnt"> 95
</span><span class="lnt"> 96
</span><span class="lnt"> 97
</span><span class="lnt"> 98
</span><span class="lnt"> 99
</span><span class="lnt">100
</span><span class="lnt">101
</span><span class="lnt">102
</span><span class="lnt">103
</span><span class="lnt">104
</span><span class="lnt">105
</span><span class="lnt">106
</span><span class="lnt">107
</span><span class="lnt">108
</span><span class="lnt">109
</span><span class="lnt">110
</span><span class="lnt">111
</span><span class="lnt">112
</span><span class="lnt">113
</span><span class="lnt">114
</span><span class="lnt">115
</span><span class="lnt">116
</span><span class="lnt">117
</span><span class="lnt">118
</span><span class="lnt">119
</span><span class="lnt">120
</span><span class="lnt">121
</span><span class="lnt">122
</span><span class="lnt">123
</span></code></pre></td>
<td class="lntd">
<pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="line"><span class="cl"><span class="c">&lt;!--from https://www.buttons.social--&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}&amp;quote={{ .Title }}%20-%20{{ .Site.Title }}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Share on Facebook&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#3b5998;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:44%;margin:28% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 864 1664&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,-95,1280)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M 959,1524 V 1260 H 802 q -86,0 -116,-36 -30,-36 -30,-108 V 927 H 949 L 910,631 H 656 V -128 H 350 V 631 H 95 v 296 h 255 v 218 q 0,186 104,288.5 104,102.5 277,102.5 147,0 228,-12 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://twitter.com/intent/tweet/?text={{ .Title }}&amp;amp;url={{ .Permalink }}&amp;via=stephenajulu&amp;amp;hashtags={{ .Params.tags }}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Tweet on Twitter&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#1b95e0;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1576 1280&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,-44,1024)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;m 1620,1128 q -67,-98 -162,-167 1,-14 1,-42 0,-130 -38,-259.5 Q 1383,530 1305.5,411 1228,292 1121,200.5 1014,109 863,54.5 712,0 540,0 269,0 44,145 q 35,-4 78,-4 225,0 401,138 -105,2 -188,64.5 -83,62.5 -114,159.5 33,-5 61,-5 43,0 85,11 Q 255,532 181.5,620.5 108,709 108,826 v 4 q 68,-38 146,-41 -66,44 -105,115 -39,71 -39,154 0,88 44,163 Q 275,1072 448.5,982.5 622,893 820,883 q -8,38 -8,74 0,134 94.5,228.5 94.5,94.5 228.5,94.5 140,0 236,-102 109,21 205,78 -37,-115 -142,-178 93,10 186,50 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://reddit.com/submit/?url={{.Permalink}}&amp;amp;resubmit=true&amp;amp;title={{.Title}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Submit to Reddit&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#ff4500;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:46%;margin:26% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1792 1692&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,0,1280)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;m 1792,690 q 0,-58 -29,-105.5 -30,-47.5 -80,-72.5 12,-46 12,-96 0,-155 -106,-287 Q 1482,-3 1298,-79.5 1114,-156 898,-156 682,-156 498.5,-79.5 315,-3 208.5,129 102,261 102,416 q 0,47 11,94 Q 62,535 31,583.5 0,632 0,690 q 0,82 58,140.5 58,58.5 141,58.5 85,0 145,-63 218,152 515,162 l 116,521 q 3,13 15,21 12,8 26,5 l 369,-81 q 18,37 54,60 36,22 79,22 62,0 106,-43 44,-44 44,-106 0,-62 -44,-106 -44,-44 -106,-44 -62,0 -105,44 -44,43 -44,105 l -334,74 -104,-472 q 300,-9 519,-160 58,61 143,61 83,0 141,-58.5 58,-58.5 58,-140.5 z M 418,491 q 0,-62 43.5,-106 43.5,-44 105.5,-44 62,0 106,44 44,44 44,106 0,62 -44,105.5 Q 629,640 567,640 506,640 462,596 418,552 418,491 z m 810,-355 q 11,11 11,26 0,15 -11,26 -10,10 -25,10 -15,0 -26,-10 -41,-42 -121,-62 -80,-20 -160,-20 -80,0 -160,20 -80,20 -121,62 -11,10 -26,10 -15,0 -25,-10 Q 553,178 553,162.5 553,147 564,136 607,93 682.5,68 758,43 805,38.5 852,34 896,34 q 44,0 91,4.5 47,4.5 123,29.5 75,25 118,68 z m -3,205 q 62,0 106,44 43,44 43,106 0,61 -44,105 -44,44 -105,44 -62,0 -106,-43.5 -44,-43.5 -44,-105.5 0,-62 44,-106 44,-44 106,-44 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;whatsapp://send?text={{.Title}}%0D%0A{{ .Summary | truncate 170 }}%0D%0AWritten%20by%20{{.Params.authors}}%0D%0ASource%20{{.Permalink}}&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Send via WhatsApp&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#43d854;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:44%;margin:28% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1536 1548&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,0,1158)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;m 985,562 q 13,0 98,-44 84,-44 89,-53 2,-5 2,-15 0,-33 -17,-76 -16,-39 -71,-65.5 -55,-26.5 -102,-26.5 -57,0 -190,62 -98,45 -170,118 -72,73 -148,185 -72,107 -71,194 v 8 q 3,91 74,158 24,22 52,22 6,0 18,-1 12,-2 19,-2 19,0 26.5,-6 7.5,-7 15.5,-28 8,-20 33,-88 25,-68 25,-75 0,-21 -34.5,-57.5 Q 599,735 599,725 q 0,-7 5,-15 34,-73 102,-137 56,-53 151,-101 12,-7 22,-7 15,0 54,48.5 39,48.5 52,48.5 z M 782,32 q 127,0 244,50 116,50 200,134 84,84 134,200.5 50,116.5 50,243.5 0,127 -50,243.5 -50,116.5 -134,200.5 -84,84 -200,134 -117,50 -244,50 -127,0 -243.5,-50 Q 422,1188 338,1104 254,1020 204,903.5 154,787 154,660 154,457 274,292 L 195,59 437,136 Q 595,32 782,32 z m 0,1382 q 153,0 293,-60 139,-60 240,-161 101,-101 161,-240.5 Q 1536,813 1536,660 1536,507 1476,367.5 1416,228 1315,127 1214,26 1075,-34 935,-94 782,-94 587,-94 417,0 L 0,-134 136,271 Q 28,449 28,660 q 0,153 60,292.5 60,139.5 161,240.5 101,101 240.5,161 139.5,60 292.5,60 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://telegram.me/share/url?text={{.Title}}%0D%0A{{ .Summary | truncate 170 }}}%0D%0AWritten%20by%20{{.Params.authors}}&amp;amp;url={{.Permalink}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Send via Telegram&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#39a7da;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:42%;margin:29% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1150 817.4&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;m 824.4,511.7 147,-693 c 6,-29.3 3,-50.3 -10,-63 -13,-12.7 -31,-15 -52,-7 L 45.45,81.65 c -19.3,7.3 -32.5,15.7 -39.504,25.05 -7,9.3 -7.8,18.2 -2.5,26.5 5.3,8.3 16.004,14.8 32.004,19.5 l 220.95,69 513,-323 c 14,-9.3 25,-11.3 32,-6 5,3.3 3,8.25 -4,14.95 l -415,375.05 0,0 0,0 -16,228 c 15.3,0 30.3,-7 45,-22 l 108,-104 224,165 c 43,24 70,11 81,-38 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://www.linkedin.com/shareArticle?mini=true&amp;amp;url={{.Permalink}}&amp;amp;title={{.Title}}&amp;amp;summary={{ .Summary }}&amp;amp;source={{.Permalink}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Share on LinkedIn&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#0077b5;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:42%;margin:29% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1536 1468&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,0,1132)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M 349,911 V -80 H 19 v 991 h 330 z m 21,306 q 1,-73 -50.5,-122 Q 268,1046 184,1046 h -2 q -82,0 -132,49 -50,49 -50,122 0,74 51.5,123 51.5,48 134.5,48 83,0 133,-48 50,-49 51,-123 z M 1536,488 V -80 h -329 v 530 q 0,105 -40,164.5 Q 1126,674 1040,674 977,674 934.5,639.5 892,605 871,554 860,524 860,473 V -80 H 531 q 2,399 2,647 0,248 -1,296 l -1,48 H 860 V 767 h -2 q 20,32 41,56 21,24 56.5,52 35.5,28 87.5,43.5 51,15.5 114,15.5 171,0 275,-113.5 Q 1536,707 1536,488 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://mix.com/add?url={{.Permalink}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Add to Mix&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#F3782B;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:38%;margin:31% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 0 448 512&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://pinterest.com/pin/create/button/?url={{.Permalink}}&amp;amp;media={{ .Params.hero | absURL }}&amp;amp;description={{.Description}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Pin on Pinterest&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#E60023;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 0 384 512&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">      			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z&#34;</span><span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;https://news.ycombinator.com/submitlink?u={{.Permalink}}&amp;t={{.Title}}-{{.Site.Title}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Submit to HackerNews&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#ff4000;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 0 140 140&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">      			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M60.94 82.314L17 0h20.08l25.85 52.093c.397.927.86 1.888 1.39 2.883.53.994.995 2.02 1.393 3.08.265.4.463.764.596 1.095.13.334.262.63.395.898.662 1.325 1.26 2.618 1.79 3.877.53 1.26.993 2.42 1.39 3.48 1.06-2.254 2.22-4.673 3.48-7.258 1.26-2.585 2.552-5.27 3.877-8.052L103.49 0h18.69L77.84 83.308v53.087h-16.9v-54.08z&#34;</span><span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">href</span><span class="o">=</span><span class="s">&#34;mailto:?subject={{.Title}}%20%3A%20{{.Permalink}}&amp;amp;body={{ .Summary | truncate 170 }}%0D%0AWritten%20by%20{{.Params.authors}}%0D%0ARead More%3A%20{{.Permalink}}&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Send via Email&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 -256 1792 1408&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">transform</span><span class="o">=</span><span class="s">&#34;matrix(1,0,0,-1,0,1024)&#34;</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M 1792,826 V 32 q 0,-66 -47,-113 -47,-47 -113,-47 H 160 Q 94,-128 47,-81 0,-34 0,32 V 826 Q 44,777 101,739 463,493 598,394 655,352 690.5,328.5 726,305 785,280.5 844,256 895,256 h 1 1 q 51,0 110,24.5 59,24.5 94.5,48 35.5,23.5 92.5,65.5 170,123 498,345 57,39 100,87 z m 0,294 q 0,-79 -49,-151 -49,-72 -122,-123 -376,-261 -468,-325 -10,-7 -42.5,-30.5 -32.5,-23.5 -54,-38 Q 1035,438 1004.5,420 974,402 947,393 q -27,-9 -50,-9 h -1 -1 q -23,0 -50,9 -27,9 -57.5,27 -30.5,18 -52,32.5 -21.5,14.5 -54,38 Q 649,514 639,521 548,585 377,703.5 206,822 172,846 110,888 55,961.5 0,1035 0,1098 q 0,78 41.5,130 41.5,52 118.5,52 h 1472 q 65,0 112.5,-47 47.5,-47 47.5,-113 z&#34;</span> <span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">onclick</span><span class="o">=</span><span class="s">&#34;window.print()&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Print this&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 0 512 512&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">      			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M448 192V77.25c0-8.49-3.37-16.62-9.37-22.63L393.37 9.37c-6-6-14.14-9.37-22.63-9.37H96C78.33 0 64 14.33 64 32v160c-35.35 0-64 28.65-64 64v112c0 8.84 7.16 16 16 16h48v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h48c8.84 0 16-7.16 16-16V256c0-35.35-28.65-64-64-64zm-64 256H128v-96h256v96zm0-224H128V64h192v48c0 8.84 7.16 16 16 16h48v96zm48 72c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z&#34;</span><span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">	<span class="p">&lt;</span><span class="nt">a</span> <span class="na">onclick</span><span class="o">=</span><span class="s">&#34;CopyLink()&#34;</span> <span class="na">target</span><span class="o">=</span><span class="s">&#34;_blank&#34;</span> <span class="na">title</span><span class="o">=</span><span class="s">&#34;Copy Link&#34;</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:inline-block;vertical-align:middle;width:2em;height:2em;border-radius:50%;box-shadow:.1em .1em 0.5em rgba(0,0,0,.3);background:#555;&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;</span><span class="nt">svg</span> <span class="na">style</span><span class="o">=</span><span class="s">&#34;display:block;fill:#fff;height:36%;margin:32% auto;&#34;</span> <span class="na">viewBox</span><span class="o">=</span><span class="s">&#34;0 0 512 512&#34;</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">      			<span class="p">&lt;</span><span class="nt">path</span> <span class="na">d</span><span class="o">=</span><span class="s">&#34;M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z&#34;</span><span class="p">/&gt;</span>
</span></span><span class="line"><span class="cl">  		<span class="p">&lt;/</span><span class="nt">svg</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">  	<span class="p">&lt;/</span><span class="nt">a</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl"><span class="c">&lt;!--end buttons.social--&gt;</span>
</span></span><span class="line"><span class="cl"><span class="p">&lt;</span><span class="nt">script</span><span class="p">&gt;</span>
</span></span><span class="line"><span class="cl">    <span class="kd">function</span> <span class="nx">copyTextToClipboard</span><span class="p">(</span><span class="nx">text</span><span class="p">)</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">  <span class="kd">var</span> <span class="nx">textArea</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">createElement</span><span class="p">(</span><span class="s2">&#34;textarea&#34;</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">//
</span></span></span><span class="line"><span class="cl">  <span class="c1">// *** This styling is an extra step which is likely not required. ***
</span></span></span><span class="line"><span class="cl">  <span class="c1">//
</span></span></span><span class="line"><span class="cl">  <span class="c1">// Why is it here? To ensure:
</span></span></span><span class="line"><span class="cl">  <span class="c1">// 1. the element is able to have focus and selection.
</span></span></span><span class="line"><span class="cl">  <span class="c1">// 2. if element was to flash render it has minimal visual impact.
</span></span></span><span class="line"><span class="cl">  <span class="c1">// 3. less flakyness with selection and copying which **might** occur if
</span></span></span><span class="line"><span class="cl">  <span class="c1">//    the textarea element is not visible.
</span></span></span><span class="line"><span class="cl">  <span class="c1">//
</span></span></span><span class="line"><span class="cl">  <span class="c1">// The likelihood is the element won&#39;t even render, not even a flash,
</span></span></span><span class="line"><span class="cl">  <span class="c1">// so some of these are just precautions. However in IE the element
</span></span></span><span class="line"><span class="cl">  <span class="c1">// is visible whilst the popup box asking the user for permission for
</span></span></span><span class="line"><span class="cl">  <span class="c1">// the web page to copy to the clipboard.
</span></span></span><span class="line"><span class="cl">  <span class="c1">//
</span></span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">// Place in top-left corner of screen regardless of scroll position.
</span></span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">position</span> <span class="o">=</span> <span class="s1">&#39;fixed&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">top</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">left</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">// Ensure it has a small width and height. Setting to 1px / 1em
</span></span></span><span class="line"><span class="cl">  <span class="c1">// doesn&#39;t work as this gives a negative w/h on some browsers.
</span></span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">width</span> <span class="o">=</span> <span class="s1">&#39;2em&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">height</span> <span class="o">=</span> <span class="s1">&#39;2em&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">// We don&#39;t need padding, reducing the size if it does flash render.
</span></span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">padding</span> <span class="o">=</span> <span class="mi">0</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">// Clean up any borders.
</span></span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">border</span> <span class="o">=</span> <span class="s1">&#39;none&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">outline</span> <span class="o">=</span> <span class="s1">&#39;none&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">boxShadow</span> <span class="o">=</span> <span class="s1">&#39;none&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="c1">// Avoid flash of white box if rendered for any reason.
</span></span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">style</span><span class="p">.</span><span class="nx">background</span> <span class="o">=</span> <span class="s1">&#39;transparent&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">value</span> <span class="o">=</span> <span class="nx">text</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="nb">document</span><span class="p">.</span><span class="nx">body</span><span class="p">.</span><span class="nx">appendChild</span><span class="p">(</span><span class="nx">textArea</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="nx">textArea</span><span class="p">.</span><span class="nx">select</span><span class="p">();</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="k">try</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">    <span class="kd">var</span> <span class="nx">successful</span> <span class="o">=</span> <span class="nb">document</span><span class="p">.</span><span class="nx">execCommand</span><span class="p">(</span><span class="s1">&#39;copy&#39;</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">    <span class="kd">var</span> <span class="nx">msg</span> <span class="o">=</span> <span class="nx">successful</span> <span class="o">?</span> <span class="s1">&#39;successful&#39;</span> <span class="o">:</span> <span class="s1">&#39;unsuccessful&#39;</span><span class="p">;</span>
</span></span><span class="line"><span class="cl">    <span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="s1">&#39;Copying link command was &#39;</span> <span class="o">+</span> <span class="nx">msg</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">  <span class="p">}</span> <span class="k">catch</span> <span class="p">(</span><span class="nx">err</span><span class="p">)</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">    <span class="nx">console</span><span class="p">.</span><span class="nx">log</span><span class="p">(</span><span class="s1">&#39;Oops, unable to copy link&#39;</span><span class="p">);</span>
</span></span><span class="line"><span class="cl">  <span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">  <span class="nb">document</span><span class="p">.</span><span class="nx">body</span><span class="p">.</span><span class="nx">removeChild</span><span class="p">(</span><span class="nx">textArea</span><span class="p">);</span>
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl"><span class="kd">function</span> <span class="nx">CopyLink</span><span class="p">()</span> <span class="p">{</span>
</span></span><span class="line"><span class="cl">  <span class="nx">copyTextToClipboard</span><span class="p">(</span><span class="nx">location</span><span class="p">.</span><span class="nx">href</span><span class="p">);</span>
</span></span><span class="line"><span class="cl"><span class="p">}</span>
</span></span><span class="line"><span class="cl">  <span class="p">&lt;/</span><span class="nt">script</span><span class="p">&gt;</span>
</span></span></code></pre></td></tr></table>
</div>
</div>]]></content:encoded><media:content url="https://ajulu.netlify.app/images/share1img.webp" medium="image"/></item><item><title>App of The Week #1</title><link>https://ajulu.netlify.app/posts/app-of-the-week-1/</link><pubDate>Sat, 10 Apr 2021 11:30:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/app-of-the-week-1/</guid><description>&lt;p&gt;Hi! Starting another series on &amp;ldquo;Android App of The Week&amp;rdquo;. Here&amp;rsquo;s this week&amp;rsquo;s app.&lt;/p&gt;
&lt;h2 id="abstruct"&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.hampusolsson.abstruct"&gt;&lt;strong&gt;Abstruct&lt;/strong&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This is a wallpaper app, the best wallpaper app for abstract designs.&lt;/p&gt;
&lt;p&gt;All wallpapers are designed by &lt;a href="http://www.hampusolsson.com/"&gt;&lt;strong&gt;Hampus Olsson&lt;/strong&gt;&lt;/a&gt;, the designer responsible for most Oneplus(&amp;amp; AOSPA) Stock Wallpapers. It has more than 362 abstract wallpapers.&lt;/p&gt;
&lt;p&gt;Personally, it&amp;rsquo;s my favorite wallpaper app and the artist is still releasing more.&lt;/p&gt;
&lt;h4 id="pros"&gt;Pros&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;362 High Quality 4K Wallpapers&lt;/li&gt;
&lt;li&gt;Option to download to gallery&lt;/li&gt;
&lt;li&gt;The artist is still making more&lt;/li&gt;
&lt;li&gt;Minimal Interface&lt;/li&gt;
&lt;li&gt;No ads even in the free version&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 id="cons"&gt;Cons&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;No desktop version&lt;/li&gt;
&lt;li&gt;No new wallpapers&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I recommend buying the Pro, the pro wallpapers are awesome!&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi! Starting another series on &ldquo;Android App of The Week&rdquo;. Here&rsquo;s this week&rsquo;s app.</p>
<h2 id="abstruct"><a href="https://play.google.com/store/apps/details?id=com.hampusolsson.abstruct"><strong>Abstruct</strong></a></h2>
<p>This is a wallpaper app, the best wallpaper app for abstract designs.</p>
<p>All wallpapers are designed by <a href="http://www.hampusolsson.com/"><strong>Hampus Olsson</strong></a>, the designer responsible for most Oneplus(&amp; AOSPA) Stock Wallpapers. It has more than 362 abstract wallpapers.</p>
<p>Personally, it&rsquo;s my favorite wallpaper app and the artist is still releasing more.</p>
<h4 id="pros">Pros</h4>
<ol>
<li>362 High Quality 4K Wallpapers</li>
<li>Option to download to gallery</li>
<li>The artist is still making more</li>
<li>Minimal Interface</li>
<li>No ads even in the free version</li>
</ol>
<h4 id="cons">Cons</h4>
<ol>
<li>No desktop version</li>
<li>No new wallpapers</li>
</ol>
<p>I recommend buying the Pro, the pro wallpapers are awesome!</p>
<p>Don&rsquo;t forget to pass by

<h5 class="additionalreading">Also Read: <a href=""></a></h5>






</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/app-of-the-week-1.webp" medium="image"/></item><item><title>Web Tool of The Week #1</title><link>https://ajulu.netlify.app/posts/web-tool-of-the-week-1/</link><pubDate>Sat, 10 Apr 2021 08:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/web-tool-of-the-week-1/</guid><description>&lt;p&gt;Hi, how are you?&lt;/p&gt;
&lt;p&gt;Hope you are taking care of yourself.&lt;/p&gt;
&lt;p&gt;Today, I&amp;rsquo;d like to take the opportunity to introduce a weekly series where I post web tools that could help you do amazing things and today&amp;rsquo;s tool is no different.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ll be posting 1 tool(with an alternative) weekly that has helped me and that I believe can help you. All the tools don&amp;rsquo;t require foreknowledge or experience with them and I&amp;rsquo;ll do my best to explain what you can do with them and why you should use them especially now when people are working remotely.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi, how are you?</p>
<p>Hope you are taking care of yourself.</p>
<p>Today, I&rsquo;d like to take the opportunity to introduce a weekly series where I post web tools that could help you do amazing things and today&rsquo;s tool is no different.</p>
<p>I&rsquo;ll be posting 1 tool(with an alternative) weekly that has helped me and that I believe can help you. All the tools don&rsquo;t require foreknowledge or experience with them and I&rsquo;ll do my best to explain what you can do with them and why you should use them especially now when people are working remotely.</p>
<p>So without further ado, I introduce:</p>
<h2 id="lunapic"><a href="https://www5.lunapic.com/editor/"><strong>Lunapic</strong></a></h2>
<p>Lunapic is a free online photo editor.</p>
<p>It allows users to upload pictures, edit them, and share them.</p>
<h3 id="why-should-i-use-lunapic"><strong>Why should I use Lunapic?</strong></h3>
<p>It has an amazing transparency tool!</p>
<p>If you have ever asked someone to make you a logo and they failed to give you one with a transparent background then you know the stress of finding ways to make the background transparent and let&rsquo;s face it, not everyone can afford Adobe Photoshop and Illustrator, and Gimp and the likes have quite a large learning curve. This tool comes in handy when all you want is to make an image&rsquo;s background transparent and it works with any images, except SVG. You can remove the background of portrait images as well. To top this off it has other amazing features.</p>
<p>The photo below is a sample I made, I used Lunapic&rsquo;s transparency tool then cropped it using a circle crop.</p>
<p><img src="/images/me3.webp" alt=""></p>
<h4 id="pros">Pros</h4>
<ol>
<li>It has so many useful tools</li>
<li>Its transparency tool is partly automatic, meaning it&rsquo;s not an eraser rather all you do is tap an area.</li>
<li>The site is fast</li>
</ol>
<h4 id="cons">Cons</h4>
<ol>
<li>The UI is dated or should I say it&rsquo;s retro</li>
<li>The transparency tool(and others) require saving before making another area transparent eg if you have a &ldquo;complex&rdquo; picture with many different colors, you&rsquo;ll need to tap each color at a time and after each tap, you&rsquo;ll need to save. The benefit of this is that it prevents ruining the picture the con is it takes quite a while if you have a &ldquo;complex&rdquo; picture.</li>
</ol>
<h4 id="alternative-pixlr">Alternative? <a href="https://pixlr.com/">Pixlr</a></h4>
<p><a href="https://pixlr.com/">Pixlr</a> is an online photo editing app, just like LunaPic. They share a similar audience. Indeed, LunaPic got a boost in users when Pixlr discontinued their desktop app in 2017.</p>
<p>Now Pixlr has two apps. One is called <a href="https://pixlr.com/x/">Pixlr X</a> and it’s targeted at beginners and casual users (the LunaPic crowd). <a href="https://pixlr.com/e/">Pixlr E</a> is intended for intermediate users and “pros.”</p>
<p>And that&rsquo;s it for today, cheers🥂 ✌️and stay safe.</p>
<p>Don&rsquo;t forget to pass by 
<h5 class="additionalreading">Also Read: <a href=""></a></h5>






</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/untitled.webp" medium="image"/></item><item><title>My Favorite Android Apps 2021</title><link>https://ajulu.netlify.app/posts/my-favorite-android-apps-2021/</link><pubDate>Mon, 29 Mar 2021 14:30:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/my-favorite-android-apps-2021/</guid><description>&lt;p&gt;Hi there, this is Stephen Ajulu and today i&amp;rsquo;d like to share with you my favorite apps of 2021. Let&amp;rsquo;s begin.&lt;/p&gt;
&lt;h2 id="dolby-on"&gt;Dolby On&lt;/h2&gt;
&lt;p&gt;As some of you know I am building a podcast, I still don&amp;rsquo;t have content, but you can check it out here: &lt;a href="https://anchor.fm/stephenajulu"&gt;anchor.fm/stephenajulu&lt;/a&gt;, and one thing I struggle with is audio quality, since I&amp;rsquo;m just starting out, I haven&amp;rsquo;t bought a dedicated mic, so far i only use my smartphone Redmi 9 or my laptop.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi there, this is Stephen Ajulu and today i&rsquo;d like to share with you my favorite apps of 2021. Let&rsquo;s begin.</p>
<h2 id="dolby-on">Dolby On</h2>
<p>As some of you know I am building a podcast, I still don&rsquo;t have content, but you can check it out here: <a href="https://anchor.fm/stephenajulu">anchor.fm/stephenajulu</a>, and one thing I struggle with is audio quality, since I&rsquo;m just starting out, I haven&rsquo;t bought a dedicated mic, so far i only use my smartphone Redmi 9 or my laptop.</p>
<p>Recording audio especially on my laptop produces bad quality, and I can&rsquo;t say much for my phone. This app has been so useful. I can&rsquo;t even explain it. You&rsquo;ll have to go try it out yourself.</p>
<h2 id="medium">Medium</h2>
<p>I am an avid reader, I like binge reading on interesting articles and Medium is a regular app for me. Go check it out, you can also find my articles on medium.</p>
<h2 id="bitwarden">Bitwarden</h2>
<p>My favorite password manager of choice. I can&rsquo;t recommend a password manager enough. If you don&rsquo;t have one, try bitwarden. P.S It&rsquo;s crossplatform meaning it works on all your devices.</p>
<h2 id="adobe-spark-post">Adobe Spark Post</h2>
<p>My favorite app of all time, when in a hurry to make graphical materials, i use this. It&rsquo;s the best and in my case better than Canva, Desygner and more. I can make logos, posters, banners, ads and more with this.</p>
<h2 id="loop">Loop</h2>
<p>A Kenyan finance app/debit card with interesting features. It&rsquo;s tag line &ldquo;Unbank Yourself&rdquo;. It&rsquo;s the best, the cards are good looking, the interface is well designed, low fees, no maintenance fees and no need for a bank. You can budget, save and invest with it. Go check it out.</p>
<h2 id="simplenote">Simplenote</h2>
<p>My second favorite app of all time. Minimal, Take quick notes and todos. Supports markdown. Has a back up feature and so much more. You&rsquo;ll love it.</p>
<h2 id="abstruct">Abstruct</h2>
<p>Want gorgeous wallpapers? Then your search ends now with this one. Beautiful abstract wallpapers made by Hampus Olsson, the creator of many stock android brand wallpapers.</p>
<h2 id="adobe-lightroom">Adobe Lightroom</h2>
<p>Do i need to say more? This is the best in my opinion photo editor. And to top it off everyone, lightroom presets created by me will be dropping soon.</p>
<h2 id="az-screen-recorder">AZ Screen Recorder</h2>
<p>For the days when you want to record something on your phone screen, say a tutorial, ad and more.</p>
<h2 id="insaver">InSaver</h2>
<p>I use this to download posts on instagram that I may want to share or keep for future purposes.</p>
<h2 id="google-news--podcasts">Google News &amp; Podcasts</h2>
<p>Serves the same purpose as Medium</p>
<h2 id="otter">Otter</h2>
<p>A great audio recorder and transcriber. I use it mainly to record voice notes and transcribe.</p>
<h2 id="viral-icon-pack">Viral Icon Pack</h2>
<p>My favorite icon pack of all time.</p>
<p>And that&rsquo;s it for today, see you soon.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/androidpit-best-free-android-apps-hero-2.webp" medium="image"/></item><item><title>How To Build An MVP</title><link>https://ajulu.netlify.app/posts/how-to-build-an-mvp/</link><pubDate>Tue, 09 Mar 2021 07:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/how-to-build-an-mvp/</guid><description>&lt;p&gt;Do you have an idea? Don&amp;rsquo;t know programming? Do you want to test it? Today i answer all these questions and help you build your minimal viable product of your idea and test it&amp;rsquo;s performance in the actual market for FREE!&lt;/p&gt;
&lt;p&gt;Yes, you heard me, free. Whether it&amp;rsquo;s an app or a website, whether you know how to program or not! Today with the tips and programs I&amp;rsquo;m about to share with you, you will be able to see if your idea is viable by testing it in the real world.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Do you have an idea? Don&rsquo;t know programming? Do you want to test it? Today i answer all these questions and help you build your minimal viable product of your idea and test it&rsquo;s performance in the actual market for FREE!</p>
<p>Yes, you heard me, free. Whether it&rsquo;s an app or a website, whether you know how to program or not! Today with the tips and programs I&rsquo;m about to share with you, you will be able to see if your idea is viable by testing it in the real world.</p>
<p>Let&rsquo;s begin!</p>
<p>First, for those who don&rsquo;t know, an MVP in full is basically a Minimal Viable Product/Project.</p>
<p>This is how Wikipedia defines it: A <a href="https://en.wikipedia.org/wiki/Minimum_viable_product"><strong>minimum viable product</strong> (<strong>MVP</strong>)</a> is a version of a product with just enough features to be usable by early customers who can then provide feedback for future <a href="https://en.wikipedia.org/wiki/New_product_development" title="New product development">product development</a>.</p>
<p>It has just enough features to be usable by your target customers.</p>
<p>Now, let me show you how you can go about making yours.</p>
<h2 id="1-define-your-idea-on-a-piece-of-paper">1. Define your idea on a piece of paper</h2>
<p>To first be able to take out some features that aren&rsquo;t immediately needed and build, you need to first define what your idea is, it&rsquo;s features, the target market, what does it solve, why are you building it, what are it&rsquo;s core features, which features are less needed.</p>
<p>After answering all those questions, create a priority list of the features it should have and give them a priority value between 1 to 10 with 1 being highly prioritized and 10 being less.</p>
<p>For example, I am building a custom signature MVP where one can get a custom signature like the ones(one is white for my dark mode users while the other one is black for my light mode users) below.</p>
<p><img src="/images/image.webp" alt=""></p>
<p><img src="/images/stephen-ajulu-signature-logo-black-thin-i-t-consultant-2.webp" alt=""></p>
<p>Here&rsquo;s my feature priority list</p>
<ol>
<li>Cool captivating header (8)</li>
<li>a showcase of the signatures I have done (10)</li>
<li>Use cases of signature logos (10)</li>
<li>Custom hoodie option show case (5)</li>
<li>newsletter (3)</li>
<li>why signature logos are awesome (9)</li>
<li>potential place to put it (5)</li>
<li>custom options that can be selected (6)</li>
<li>ordering process (10)</li>
<li>price + addons (10)</li>
<li>order page/form (10)</li>
</ol>
<p>Now seeing as mine is a simple idea of getting a custom signature logo, I am allowed certain privileges e.g. adding more features</p>
<p>And so with that we move to the next step</p>
<p>P.S: I am actually building my MVP as I write.</p>
<h2 id="2-researching-potential-competitors-and-outsmarting-them">2. Researching potential competitors and outsmarting them</h2>
<p>Now here all we need to do is google(duckduck go) our idea, learn and research our competitors, what do they have, what do they do, how do they do, can we borrow features and make certain things better. I already did my research and found 1 competitor, don&rsquo;t start comparing yourself/mvp with their complete product, just learn, feel free to add more features and add priorities because at the end of the day, once the MVP is successful there won&rsquo;t be a need to build a fresh, just build on top and implement what you learned.</p>
<h2 id="3-finding-a-platform-for-your-mvp">3. Finding a platform for your MVP</h2>
<p>Remember when i said you could build your MVP for free? Here&rsquo;s where that free line is thoroughly tested.</p>
<p>There platforms such as Carrd, Webflow, Bubble and others. The best way to find yours is to google for platforms. Even a free 14 day trial is enough for a test run. For landing pages, I suggest Carrd or Webflow. For more advanced ideas with a back end requirement, i suggest a No-Code platform such as Bubble.io. Bubble provides tutorials, you can easily learn in a day. Better yet, if you aren&rsquo;t a dev you can build your whole idea there. So search for a platform that provides what you want. For me a simple landing page with a order form is enough, if the one i pick doesn&rsquo;t provide order forms, then I connect it with something that does. So I&rsquo;m going to use Carrd.co, bought a pro plan sometime back for 15 dollars or 1,700 Kenyan shillings. It&rsquo;s a good investment because it helps me build an MVP within a day. But you can sign up for a free account.</p>
<h2 id="4-building-">4. Building 🛠</h2>
<p>Now here i won&rsquo;t say much, experiment to your hearts content. Try everything and anything that catches your eye. I can&rsquo;t really show you how build your MVP but I can help you build your MVP, i am offering free consultation to the first 3 people who request it. Email me → <a href="mailto:alunje73@gmail.com">alunje73@gmail.com</a>, to the rest. I offer consultation for 10 USD or ksh. 1,000 per day. Before emailing me kindly do the above steps except 3 and 4.</p>
<h2 id="5-tweaks-and-sharing">5. Tweaks and Sharing</h2>
<p>Now you have a test MVP, view it and interact with it. If there&rsquo;s anything you&rsquo;d like to add, add it. Do some minor tweaks and repeat preview, interact and test. Once you are done, first share with family and friends, accept their criticism and thanks but don&rsquo;t listen to them if they say the idea isn&rsquo;t practical or anything that suggests you give up. Leave that to the market. Once all your family members know about it. Share to the rest of the world, share, share and share. Add relevant hashtags, share it day and night! And add a way for people to review.</p>
<h2 id="6-market">6. Market</h2>
<p>Once the MVP is out to the public, and your are receiving good reviews, it&rsquo;s time to go into marketing, I&rsquo;ll explain marketing on another post, but basically use Facebook Ads.</p>
<h2 id="7-build-it-further">7. Build it further</h2>
<p>Now, build it into a real company/product/service and work hard to maintain, advance and market it.</p>
<p>I&rsquo;ll share my custom signature logo mvp progress</p>
<p><a href="https://digitalya.co/blog/5-awesome-minimum-viable-product-examples/">Learn More About MVPs| Digitalya</a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/mvp-mobile-app-step.webp" medium="image"/></item><item><title>My Favorite Android Apps</title><link>https://ajulu.netlify.app/posts/my-favorite-android-apps/</link><pubDate>Mon, 01 Mar 2021 18:02:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/my-favorite-android-apps/</guid><description>&lt;p&gt;Phones have become a part of our life, we cherish them and most importantly, we take them everywhere, even in toilets 😬.&lt;/p&gt;
&lt;p&gt;With phones, come apps, tons of them and today I&amp;rsquo;d like to share 6 personal best android apps, let&amp;rsquo;s begin.&lt;/p&gt;
&lt;h3 id="1-simplenote-by-automattic"&gt;1. &lt;a href="https://play.google.com/store/apps/details?id=com.automattic.simplenote&amp;amp;hl=en_US&amp;amp;gl=US"&gt;&lt;strong&gt;Simplenote&lt;/strong&gt;&lt;/a&gt; by Automattic&lt;/h3&gt;
&lt;p&gt;This is not only the best note taking app in my opinion but also my favorite app in my phone overall. With it, I can take quick notes or lists, write markdown and automatically sync notes on all my devices(cross platform).&lt;/p&gt;</description><content:encoded><![CDATA[<p>Phones have become a part of our life, we cherish them and most importantly, we take them everywhere, even in toilets 😬.</p>
<p>With phones, come apps, tons of them and today I&rsquo;d like to share 6 personal best android apps, let&rsquo;s begin.</p>
<h3 id="1-simplenote-by-automattic">1. <a href="https://play.google.com/store/apps/details?id=com.automattic.simplenote&amp;hl=en_US&amp;gl=US"><strong>Simplenote</strong></a> by Automattic</h3>
<p>This is not only the best note taking app in my opinion but also my favorite app in my phone overall. With it, I can take quick notes or lists, write markdown and automatically sync notes on all my devices(cross platform).</p>
<p>Now you should know this is no full blown note taking app, it as the name says, it gives you a minimal and simplistic way to write, pin and group notes based on tags.</p>
<p>I use it to jot down ideas, to do lists, blog posts, and more.</p>
<h3 id="2-adobe-spark-post-by-adobe">2. <a href="https://play.google.com/store/apps/details?id=com.adobe.spark.post&amp;hl=en_US&amp;gl=US"><strong>Adobe Spark Post</strong></a> by Adobe</h3>
<p>I run businesses, I build brands, I manage social media accounts and more, Adobe Spark Post has been my partner for a long time, I use it when i need to design a poster or banner super quick and still make it look great.</p>
<p>It has so many themes that can be used to build posters and banners for every occasion, design for the web and social media. All high quality stuf unlike a few i won&rsquo;t mention.</p>
<h3 id="3-bitwarden-by-bitwarden">3. <a href="https://play.google.com/store/apps/details?id=com.x8bit.bitwarden&amp;hl=en_US&amp;gl=US"><strong>Bitwarden</strong></a> by Bitwarden</h3>
<p>My favorite password manager of choice, what more can i say. It&rsquo;s literally the best and i recommend you switch to this if you are using LastPass because of the recent LastPass issue. Helps keep and generate passwords and secret notes.</p>
<h3 id="4-by-microsoft-corporation">4. <a href="https://play.google.com/store/apps/details?id=com.microsoft.emmx&amp;hl=en_US&amp;gl=US">**Edge **</a>by Microsoft Corporation</h3>
<p>I build a lot of things and sometimes i need to edit something in a git repository or google problems and such. Edge is my browser of choice. Previously I used FireFox which is good but Edge is better in some aspects i value highly.</p>
<h3 id="5-mixplorer-by-hootan-parsa">5. <a href="https://play.google.com/store/apps/details?id=com.mixplorer.silver&amp;hl=en_US&amp;gl=US"><strong>MiXplorer</strong></a> by Hootan Parsa</h3>
<p>My favorite file manager.</p>
<p>Here a some of the things it provides: Archiver, SMB2, Image, Tagger, Metadata and PDF</p>
<h3 id="6-office-by-microsoft-corporation">6. <a href="https://play.google.com/store/apps/details?id=com.microsoft.office.officehubrow&amp;hl=en_US&amp;gl=US"><strong>Office</strong></a> by Microsoft Corporation</h3>
<p>Very useful work and study tools, can open sheets, documents, presentations and even pdf</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/7xzxqziqbcyvscsmkwq63k.webp" medium="image"/></item><item><title>How to Build Your First Blog Part 2</title><link>https://ajulu.netlify.app/posts/how-to-build-your-first-blog-part-2/</link><pubDate>Mon, 08 Feb 2021 06:20:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/how-to-build-your-first-blog-part-2/</guid><description>&lt;p&gt;Recap: Today I showed you &lt;a href="https://ajulusthoughts.stephenajulu.com/post/how-to-buy-your-first-share/"&gt;how to buy your first share&lt;/a&gt; and simple free ways to &lt;a href="https://ajulusthoughts.netlify.app/post/how-to-build-your-first-blog/"&gt;build your first blog&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now I&amp;rsquo;ll show you the paid and slightly more technical ways to build your first blog.&lt;/p&gt;
&lt;p&gt;NOTE: Below are ways that require a little technical knowledge, if you don&amp;rsquo;t have that, kindly go to the &lt;a href="https://ajulusthoughts.stephenajulu.com/post/how-to-build-your-first-blog/"&gt;first post of the series&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="wordpress-org-way"&gt;WordPress Org Way&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Research and find a good hosting platform with a cpanel and wordpress quick install(softaculous or similar).&lt;/li&gt;
&lt;li&gt;Buy a domain name and hosting.&lt;/li&gt;
&lt;li&gt;Go to cpanel and click Wordpress or Softaculous then Wordpress. Let it install.&lt;/li&gt;
&lt;li&gt;Once ready visit your wordpress site&amp;rsquo;s admin panel and start editing or posting right away. You may be required to add ssl yourself but your host will provide you with details.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This guide isn&amp;rsquo;t in-depth so visit the &lt;a href="https://wordpress.org/support/article/how-to-install-wordpress/"&gt;official guide&lt;/a&gt;.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Recap: Today I showed you <a href="https://ajulusthoughts.stephenajulu.com/post/how-to-buy-your-first-share/">how to buy your first share</a> and simple free ways to <a href="https://ajulusthoughts.netlify.app/post/how-to-build-your-first-blog/">build your first blog</a>.</p>
<p>Now I&rsquo;ll show you the paid and slightly more technical ways to build your first blog.</p>
<p>NOTE: Below are ways that require a little technical knowledge, if you don&rsquo;t have that, kindly go to the <a href="https://ajulusthoughts.stephenajulu.com/post/how-to-build-your-first-blog/">first post of the series</a>.</p>
<h2 id="wordpress-org-way">WordPress Org Way</h2>
<ol>
<li>Research and find a good hosting platform with a cpanel and wordpress quick install(softaculous or similar).</li>
<li>Buy a domain name and hosting.</li>
<li>Go to cpanel and click Wordpress or Softaculous then Wordpress. Let it install.</li>
<li>Once ready visit your wordpress site&rsquo;s admin panel and start editing or posting right away. You may be required to add ssl yourself but your host will provide you with details.</li>
</ol>
<p>This guide isn&rsquo;t in-depth so visit the <a href="https://wordpress.org/support/article/how-to-install-wordpress/">official guide</a>.</p>
<h2 id="ghost-way">Ghost Way</h2>
<p>Tip: Ghost is an awesome platform for bloggers.</p>
<p>Go to the official installation guide: <a href="https://ghost.org/docs/install/">Ghost Install Guide</a></p>
<h2 id="the-jamstack-way">The JAMstack Way</h2>
<p>This blog was built the JAMstack way, no servers, just built using hugo and rendered as html.</p>
<p>To build such,</p>
<ol>
<li>You must first research your framework of choice, there&rsquo;s Hugo(the best in my opinion), Gatsby(fast page load), Gridsome(same as gatsby), Hexo, Jekyll(slow build times, excellent theme list) and Eleventy(mainly technical)</li>
<li>Once the decision is made, i&rsquo;ll proceed with hugo but the steps are pretty much the same. Find a theme. For example <a href="https://themes.gohugo.io">hugo themes</a>.</li>
<li>Fork, clone and start editing(i cut out how to clone because i prefer it being in another article for now do your research, you don&rsquo;t even need to clone to your machine, just work from the fork.</li>
<li>Editing should be simple, eg for Hugo, go into the config.toml or .yaml file and change the variables.</li>
<li>You can now go to content then posts, copy the structure of example posts and start writing.</li>
<li>Alternatively find a theme with a headless cms and start working from there</li>
<li>Alternatively again try <a href="http://stackbit.com/">StackBit</a>, it&rsquo;s free and you can build a great blog there.</li>
</ol>
<p>That&rsquo;s it for today. To learn more about the JAMstack way, go check out <a href="https://ajulusthoughts.stephenajulu.com/post/building-a-beautiful-progressive-jamstack-blog-part-1-day-1-to-3/">this</a>, <a href="https://ajulusthoughts.stephenajulu.com/post/building-a-beautiful-progressive-jamstack-blog-part-2-day-4-to-7/">this </a>and <a href="">this</a> where i show you exactly how this blog was built.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/blog.webp" medium="image"/></item><item><title>How to Create a Simple Personal URL Shortener</title><link>https://ajulu.netlify.app/posts/how-to-create-a-simple-personal-url-shortener-with-github-netlify-and-an-affordable-domain-name/</link><pubDate>Thu, 16 Jul 2020 09:04:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/how-to-create-a-simple-personal-url-shortener-with-github-netlify-and-an-affordable-domain-name/</guid><description>&lt;p&gt;Hey guys. How are you? Hope you are safe!&lt;/p&gt;
&lt;p&gt;Today I’d like to help you build an URL shortener with GitHub, Netlify and an Affordable Domain Name. So let’s dive right in.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Create a GitHub and Netlify Account&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create a new repository, name it whatever you like. Mine is links.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Go to Add File and click Create New File&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Name the file _redirects.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Now create links like this&lt;/p&gt;
&lt;p&gt;&lt;img src="https://ajulu.netlify.app/images/screenshot_2020-07-14-stephenajulu-links2.webp" alt=""&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Feel free to use TAB to properly space it otherwise use 5 spaces.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guys. How are you? Hope you are safe!</p>
<p>Today I’d like to help you build an URL shortener with GitHub, Netlify and an Affordable Domain Name. So let’s dive right in.</p>
<ol>
<li>
<p>Create a GitHub and Netlify Account</p>
</li>
<li>
<p>Create a new repository, name it whatever you like. Mine is links.</p>
</li>
<li>
<p>Go to Add File and click Create New File</p>
</li>
<li>
<p>Name the file _redirects.</p>
</li>
<li>
<p>Now create links like this</p>
<p><img src="/images/screenshot_2020-07-14-stephenajulu-links2.webp" alt=""></p>
</li>
<li>
<p>Feel free to use TAB to properly space it otherwise use 5 spaces.</p>
</li>
<li>
<p>Commit the file</p>
</li>
<li>
<p>Now go to our Netlify Dashboard and import your url shortener links repository.</p>
</li>
<li>
<p>Leave deploy settings as is</p>
</li>
<li>
<p>Deploy.</p>
</li>
<li>
<p>Now go to where you’ll be buying your domain name and buy a short domain name. I bought <a href="https://stve.xyz" title="https://stve.xyz">https://stve.xyz</a> from Namecheap at ksh. 600.</p>
</li>
<li>
<p>Go back to the Netlify Dashboard and select the new app</p>
</li>
<li>
<p>Now go to Settings, select Domain Management then Add Domain Alias.</p>
</li>
<li>
<p>Follow the instructions from there and you should be good to go.</p>
</li>
<li>
<p>I suggest you create a website with the redirects file like mine: Stephen Ajulu’s URL Shortener and Link tree. I actually created a startup where we build for you such sites. Watch this space for the link to build your own. Video coming soon so watch below and sign up to our newsletter to receive updates.</p>
</li>
</ol>
<p><a href="https://ajulusthoughts.wordpress.com" title="Ajulu's Thoughts"><strong>Ajulu’s Thoughts</strong></a> – Delivering Quality Tech, Cybersecurity &amp; Dev Content Since November 2016</p>
<p>I will appreciate it, if you take 10 seconds of your time to check out my donations page and donate to the blog and other causes. 40% of the donation goes to buying this blog an official domain name, the rest goes to charity eg supporting children homes. Any amount received will be shown, from whom and to where it went. I will also include screenshots of inflow and outflow. So go check it out: <a href="https://ajulusthoughts.wordpress.com/donate" title="Donations">Donations</a> and donate! You can also buy me something via the wishing list. Thank you and have a wonderful day.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/blog-cover.webp" medium="image"/></item><item><title>How to Create a Dev Environment in Windows 10: Part 1</title><link>https://ajulu.netlify.app/posts/how-to-create-a-dev-environment-in-windows-10-part-1/</link><pubDate>Thu, 09 Jul 2020 14:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/how-to-create-a-dev-environment-in-windows-10-part-1/</guid><description>&lt;p&gt;Hi, guys? Long time, huh? Hope you are all doing great! and you are all safe and sound. Today i would like to help you create a development/hacking environment in Windows 10. So let’s get started with Part 1: First Installation.&lt;/p&gt;
&lt;p&gt;First you’ll need to make sure you have a Windows 10, updated to 10th May 202 version(Windows 10, Version 2004, Build 19041 or higher).&lt;/p&gt;
&lt;p&gt;Now i would like you to install the Windows Subsystem for Linux v1 and 2.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hi, guys? Long time, huh? Hope you are all doing great! and you are all safe and sound. Today i would like to help you create a development/hacking environment in Windows 10. So let’s get started with Part 1: First Installation.</p>
<p>First you’ll need to make sure you have a Windows 10, updated to 10th May 202 version(Windows 10, Version 2004, Build 19041 or higher).</p>
<p>Now i would like you to install the Windows Subsystem for Linux v1 and 2.</p>
<h2 id="heres-the-installation">Here’s the installation:</h2>
<h2 id="wsl1">WSL1</h2>
<p>Before installing any Linux distributions on Windows, you must enable the “Windows Subsystem for Linux” optional feature.</p>
<p>Open PowerShell as Administrator and run:</p>
<pre><code>dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
</code></pre>
<p>To only install WSL 1, you should now restart your machine and move on to <a href="https://docs.microsoft.com/en-us/windows/wsl/install-win10#install-your-linux-distribution-of-choice">Install your Linux distribution of choice</a>, otherwise wait to restart and move on to update to WSL 2. Read more about <a href="https://docs.microsoft.com/en-us/windows/wsl/compare-versions">Comparing WSL 2 and WSL 1</a>.</p>
<h2 id="wsl2">WSL2</h2>
<p>To update to WSL 2, you must meet the following criteria:</p>
<ul>
<li>Running Windows 10, <a href="https://ajulusthoughts.wordpress.com/2020/07/09/how-to-create-a-dev-environment-in-windows-10-part-1/windowsupdate">updated to version 2004</a>, <strong>Build 19041</strong> or higher.</li>
<li>Check your Windows version by selecting the <strong>Windows logo key + R</strong>, type <strong>winver</strong>, select <strong>OK</strong>. (Or enter the <em><code>ver</code></em> command in Windows Command Prompt). Please <a href="https://ajulusthoughts.wordpress.com/2020/07/09/how-to-create-a-dev-environment-in-windows-10-part-1/windowsupdate">update to the latest Windows version</a> if your build is lower than 19041. <a href="https://www.microsoft.com/software-download/windows10">Get Windows Update Assistant</a>.</li>
</ul>
<h4 id="enable-the-virtual-machine-platform-optional-component">Enable the ‘Virtual Machine Platform’ optional component</h4>
<p>Before installing WSL 2, you must enable the “<em>Virtual Machine Platform</em>” optional feature.</p>
<p>Open PowerShell as Administrator and run: PowerShell</p>
<pre><code>dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
</code></pre>
<p><strong>Restart</strong> your machine to complete the WSL install and update to WSL 2.</p>
<h4 id="set-wsl-2-as-your-default-version">Set WSL 2 as your default version</h4>
<p>Run the following command in PowerShell to set WSL 2 as the default version when installing a new Linux distribution: PowerShell</p>
<pre><code>wsl --set-default-version 2
</code></pre>
<p>You might see this message after running that command: <em><code>WSL 2 requires an update to its kernel component. For information please visit</code></em><a href="https://aka.ms/wsl2kernel" title="https://aka.ms/wsl2kernel"><em><code>https://aka.ms/wsl2kernel</code></em></a>. Please follow the link (<a href="https://aka.ms/wsl2kernel" title="https://aka.ms/wsl2kernel">https://aka.ms/wsl2kernel</a>) and install the MSI from that page on our documentation to install a Linux kernel on your machine for WSL 2 to use. Once you have the kernel installed, please run the command again and it should complete successfully without showing the message.</p>
<p>Note</p>
<p>The update from WSL 1 to WSL 2 may take several minutes to complete depending on the size of your targeted distribution. If you are running an older (legacy) installation of WSL 1 from Windows 10 Anniversary Update or Creators Update, you may encounter an update error. Follow these instructions to <a href="https://docs.microsoft.com/en-us/windows/wsl/install-legacy#uninstallingremoving-the-legacy-distro">uninstall and remove any legacy distributions</a>.</p>
<p>If <em><code>wsl --set-default-version</code></em> results as an invalid command, enter <em><code>wsl --help</code></em>. If the <em><code>--set-default-version</code></em> is not listed, it means that your OS doesn’t support it and you need to update to version 2004, Build 19041 or higher.</p>
<h4 id="install-your-linux-distribution-of-choice">Install your Linux distribution of choice</h4>
<ol>
<li>Open the <a href="https://aka.ms/wslstore">Microsoft Store</a> and select your favorite Linux distribution. <img src="https://docs.microsoft.com/en-us/windows/wsl/media/store.webp" alt="View of Linux distributions in the Microsoft Store"> The following links will open the Microsoft store page for each distribution:
<ul>
<li><a href="https://www.microsoft.com/store/apps/9pjn388hp8c9">Ubuntu 16.04 LTS</a></li>
<li><a href="https://www.microsoft.com/store/apps/9N9TNGVNDL3Q">Ubuntu 18.04 LTS</a></li>
<li><a href="https://www.microsoft.com/store/apps/9n6svws3rx71">Ubuntu 20.04 LTS</a></li>
<li><a href="https://www.microsoft.com/store/apps/9NJFZK00FGKV">openSUSE Leap 15.1</a></li>
<li><a href="https://www.microsoft.com/store/apps/9MZ3D1TRP8T1">SUSE Linux Enterprise Server 12 SP5</a></li>
<li><a href="https://www.microsoft.com/store/apps/9PN498VPMF3Z">SUSE Linux Enterprise Server 15 SP1</a></li>
<li><a href="https://www.microsoft.com/store/apps/9PKR34TNCV07">Kali Linux</a></li>
<li><a href="https://www.microsoft.com/store/apps/9MSVKQC78PK6">Debian GNU/Linux</a></li>
<li><a href="https://www.microsoft.com/store/apps/9n6gdm4k2hnc">Fedora Remix for WSL</a></li>
<li><a href="https://www.microsoft.com/store/apps/9NV1GV1PXZ6P">Pengwin</a></li>
<li><a href="https://www.microsoft.com/store/apps/9N8LP0X93VCP">Pengwin Enterprise</a></li>
<li><a href="https://www.microsoft.com/store/apps/9p804crf0395">Alpine WSL</a></li>
</ul>
</li>
</ol>
<p>For a development environment i recommend <a href="https://www.microsoft.com/store/apps/9n6svws3rx71"><strong>Ubuntu</strong></a> and for Hacking i recommend <a href="https://www.microsoft.com/store/apps/9PKR34TNCV07"><strong>Kali Linux</strong></a>. But feel free to choose any you like. Linux is linux and we will be working mostly on the terminal.</p>
<ol>
<li>From the distribution’s page, select “Get”. <img src="https://docs.microsoft.com/en-us/windows/wsl/media/ubuntustore.webp" alt="Linux distributions in the Microsoft store"></li>
</ol>
<h4 id="set-up-a-new-distribution">Set up a new distribution</h4>
<p>The first time you launch a newly installed Linux distribution, a console window will open and you’ll be asked to wait for a minute or two for files to de-compress and be stored on your PC. All future launches should take less than a second.</p>
<p>You will then need to <a href="https://docs.microsoft.com/en-us/windows/wsl/user-support">create a user account and password for your new Linux distribution</a>.</p>
<p><img src="https://docs.microsoft.com/en-us/windows/wsl/media/ubuntuinstall.webp" alt="Ubuntu unpacking in the Windows console"></p>
<h1></h1>
<h3 id="set-your-distribution-version-to-wsl-1-or-wsl-2">Set your distribution version to WSL 1 or WSL 2</h3>
<p>You can check the WSL version assigned to each of the Linux distributions you have installed by opening the PowerShell command line and entering the command (only available in <a href="https://ajulusthoughts.wordpress.com/2020/07/09/how-to-create-a-dev-environment-in-windows-10-part-1/windowsupdate">Windows Build 19041 or higher</a>): <em><code>wsl -l -v</code></em> PowerShell</p>
<pre><code>wsl --list --verbose
</code></pre>
<p>To set a distribution to be backed by either version of WSL please run: PowerShell</p>
<pre><code>wsl --set-version &lt;distribution name&gt; &lt;versionNumber&gt;
</code></pre>
<p>Make sure to replace <em><distribution name></em> with the actual name of your distribution and <em><versionNumber></em> with the number ‘1’ or ‘2’. You can change back to WSL 1 at anytime by running the same command as above but replacing the ‘2’ with a ‘1’.</p>
<p>Additionally, if you want to make WSL 2 your default architecture you can do so with this command: PowerShell</p>
<pre><code>wsl --set-default-version 2
</code></pre>
<p>This will set the version of any new distribution installed to WSL 2.</p>
<p>Now we need a good terminal emulator application to manage the OS you’ve installed. I recommend <a href="http://hyper.is/">Hyper</a> and <a href="https://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=&amp;cad=rja&amp;uact=8&amp;ved=2ahUKEwihjb2xzb_qAhXIxoUKHZk6CwcQFjAAegQIARAB&amp;url=https%3A%2F%2Fwww.microsoft.com%2Fen-us%2Fp%2Fwindows-terminal%2F9n0dx20hk701&amp;usg=AOvVaw0T3sd9IQM_S3Udg4fr3Xkz">Windows Terminal</a>. I use Hyper.</p>
<p>If you are a beginner go over here to learn about basic terminal commands: <a href="https://ajulusthoughts.wordpress.com/2019/05/30/basic-linux-commands/"><strong>Terminal Commands</strong></a>.</p>
<p>That’s the end of part 1. Part 2: <a href="https://ajulusthoughts.wordpress.com/2020/07/09/how-to-create-a-dev-environment-in-windows-10-part-2/"><strong>Coming Soon</strong></a></p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/linux-windows.webp" medium="image"/></item><item><title>Resources for Building a Beautiful Progressive JAMstack Blog</title><link>https://ajulu.netlify.app/posts/resources-for-building-a-beautiful-progressive-jamstack-blog/</link><pubDate>Mon, 06 Apr 2020 09:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/resources-for-building-a-beautiful-progressive-jamstack-blog/</guid><description>&lt;p&gt;Hey guys? We are back again this time i want to share with you the tools i used to build this project. I would like to thank the creators and team behind these tools. I use these tools regularly in personal and client projects. But they contributed a great deal to this project. Even though i used a theme. Part 3 is coming soon and you may see UI changes hence the reason i reserved that for last. If you haven’t see part 1 and 2 i suggest you do.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guys? We are back again this time i want to share with you the tools i used to build this project. I would like to thank the creators and team behind these tools. I use these tools regularly in personal and client projects. But they contributed a great deal to this project. Even though i used a theme. Part 3 is coming soon and you may see UI changes hence the reason i reserved that for last. If you haven’t see part 1 and 2 i suggest you do.</p>
<blockquote>
<p><a href="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/"><strong><em>Building a Beautiful Progressive JAMstack Blog Part</em></strong> <strong><em>1</em></strong></a><br>
&amp;<br>
<a href="https://ajulusthoughts.wordpress.com/2020/04/05/building-a-beautiful-progressive-jamstack-blog-part-2/"><strong><em>Building a Beautiful Progressive JAMstack Blog Part 2</em></strong></a></p>
<p>Part 1 and Part 2</p>
</blockquote>
<h4 id="static-site-generator-hugo">STATIC SITE GENERATOR: <a href="https://gohugo.io" title="HUGO"><strong>HUGO</strong></a></h4>
<h4 id="theme-hugo-version-of-naratives-novela">THEME: <a href="https://github.com/forestryio/hugo-theme-novela"><strong>HUGO VERSION OF NARATIVE’S NOVELA</strong></a></h4>
<h4 id="host-github">HOST: <a href="https://github.com"><strong>GITHUB</strong></a></h4>
<h4 id="continuous-deployment-netlify">CONTINUOUS DEPLOYMENT: <a href="https://netlify.com"><strong>NETLIFY</strong></a></h4>
<h4 id="domain-name-namecheap">DOMAIN NAME: <a href="https://namecheap.com"><strong>NAMECHEAP</strong></a></h4>
<h4 id="headless-git-based-cms-forestry-cms">HEADLESS GIT BASED CMS: <a href="https://forestry.io"><strong>FORESTRY CMS</strong></a></h4>
<h4 id="manifest-icons-and-basic-service-worker-generator-pwastarter">MANIFEST, ICONS AND BASIC SERVICE WORKER GENERATOR: <a href="https://pwastarter.love2dev.com"><strong>PWASTARTER</strong></a></h4>
<h4 id="pwa-scriptsweb-share-push-notifications-pwabuilder">PWA SCRIPTS(WEB SHARE, PUSH NOTIFICATIONS): <a href="https://pwabuilder.com"><strong>PWABUILDER</strong></a></h4>
<h4 id="performance-testing--gtmetrix">PERFORMANCE TESTING: <a href="https://developers.google.com/speed/pagespeed/insights/">**PAGESPEED INSIGHTS **</a>&amp; <a href="https://gtmetrix.com/"><strong>GTMETRIX</strong></a></h4>
<h4 id="screenshot-tool-firefox-screenshot">SCREENSHOT TOOL: <a href="https://screenshots.firefox.com/"><strong>FIREFOX SCREENSHOT</strong></a></h4>
<h4 id="comments-utterances">COMMENTS: <a href="https://utteranc.es"><strong>UTTERANCES</strong></a></h4>
<h4 id="image-conversion-tool-file-converter">IMAGE CONVERSION TOOL: <a href="https://file-converter.org/"><strong>FILE CONVERTER</strong></a></h4>
<h4 id="image-optimization--compression-file-optimizer">IMAGE OPTIMIZATION &amp; COMPRESSION: <a href="https://nikkhokkho.sourceforge.io/static.php?page=FileOptimizer"><strong>FILE OPTIMIZER</strong></a></h4>
<h4 id="newsletter-tool-formspree">NEWSLETTER TOOL: <a href="https://formspree.com"><strong>FORMSPREE</strong></a></h4>
<h4 id="security-caching-and-more-cloudflare">SECURITY, CACHING AND MORE: <a href="https://cloudflare.com"><strong>CLOUDFLARE</strong></a></h4>
<h4 id="code-editor-visual-studio-code">CODE EDITOR: <a href="https://code.visualstudio.com/"><strong>VISUAL STUDIO CODE</strong></a></h4>
<h2 id="go-check-out-these-awesome-blogs-for-more-awesome-content">Go check out these awesome blogs for more awesome content:</h2>
<ul>
<li><a href="https://techknow.co.ke"><strong>TechKnow Africa</strong></a></li>
<li><a href="https://stream254.com"><strong>Stream254</strong></a></li>
<li><a href="https://tmj.home.blog"><strong>TMJ</strong></a></li>
<li><a href="https://blog.stephenajulu.com"><strong>Ajulu’s Blog</strong></a></li>
</ul>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/Screenshot_2020-03-31_20Stephen_20Ajulu_27s_20Blog_e31928d93e0d53d288cde238ac72207d.webp" medium="image"/></item><item><title>Building a Beautiful Progressive JAMstack Blog Part 2: Day 4 to 7</title><link>https://ajulu.netlify.app/posts/building-a-beautiful-progressive-jamstack-blog-part-2-day-4-to-7/</link><pubDate>Sun, 05 Apr 2020 12:15:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/building-a-beautiful-progressive-jamstack-blog-part-2-day-4-to-7/</guid><description>&lt;p&gt;Hey guys? Welcome to Part 2 of building the beautiful, fast, SEO optimized, progressive JAMstack blog.&lt;/p&gt;
&lt;p&gt;If you didn’t check out part 1, kindly go do so here: &lt;a href="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/" title="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/"&gt;&lt;strong&gt;https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So we are continuing with Part 2.&lt;/p&gt;
&lt;p&gt;Shall we begin?&lt;/p&gt;
&lt;h2 id="day-4"&gt;Day 4&lt;/h2&gt;
&lt;p&gt;Nothing much to do so i did a bit of research&lt;/p&gt;
&lt;h2 id="day-5"&gt;DAY 5&lt;/h2&gt;
&lt;p&gt;Here’s where the knowledge of Day 4 come to play.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Linked the Manifest.json and all the app icons/favicons to the head section as you can remember i couldn’t do this because i was using the original theme’s layout folder so the only way was to copy their layout file to mine and that wasn’t an ideal situation. So i found a solution, Netlify’s Snippet Injection tool.(oh thank you &lt;a href="https://netlify.com"&gt;&lt;strong&gt;netlify&lt;/strong&gt;&lt;/a&gt;) I had heard of this tool but it was back then when i was using &lt;a href="https://jekyllrc.org"&gt;&lt;strong&gt;Jekyll&lt;/strong&gt;&lt;/a&gt;(another very good static site generator with thousands of themes), back then i only had 1 site deployed in netlify and i didn’t need to tool. So to continue i managed to link them successfully and the website began acting like and app.&lt;/li&gt;
&lt;li&gt;Linked the Service Worker Register to the bottom of the body using the same Netlify Snippet Tool&lt;/li&gt;
&lt;li&gt;Added the SEO meta tags together with the manifest.json and app icons&lt;/li&gt;
&lt;li&gt;Added more Hugo Shortcodes and paired them with forestry snippets(since am using forestry as my CMS there’s no need to add the shortcodes manually just create a ___.snippet file in /.forestry/snippets/……. as for shortcodes they go under /layouts/shortcodes/…….. I’ll show you how to do this in just a bit.&lt;/li&gt;
&lt;li&gt;Researched&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;End of Day 5&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="day-6"&gt;DAY 6&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Added more hugo shortcodes and their respective forestry snippets&lt;/li&gt;
&lt;li&gt;Added a &lt;a href="https://blog.stephenajulu.com/feed.json"&gt;&lt;strong&gt;json feed&lt;/strong&gt;&lt;/a&gt; because ……….. why not?&lt;/li&gt;
&lt;li&gt;Added a &lt;a href="https://blog.stephenajulu.com/404/"&gt;&lt;strong&gt;custom 404&lt;/strong&gt;&lt;/a&gt; page replacing Netlify’s version&lt;/li&gt;
&lt;li&gt;Added a Comment system that uses Github Issues as the base, the comments system is called &lt;a href="https://utteranc.es"&gt;&lt;strong&gt;Utterances&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Researched&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;End of Day 6&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="day-7"&gt;DAY 7&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Did a few tweaks and hacks&lt;/li&gt;
&lt;li&gt;Added Google Analytics&lt;/li&gt;
&lt;li&gt;Turned all images to .webp format because of it’s compression and small file size therefore bringing the total homepage size to 432kb from 3.4mb&lt;/li&gt;
&lt;li&gt;Resized my author image from 1124×1024 to 160×60 or something there about(cant remember the correct sizes but they near those i have mentioned)&lt;/li&gt;
&lt;li&gt;Minified and Unified a few Javascript files&lt;/li&gt;
&lt;li&gt;Removed Google Analytics 🤣 It was slowing down my site because of the requests it made and also privacy issues&lt;/li&gt;
&lt;li&gt;Managed to make the PageSpeed Desktop Score 100 while Mobile is at 98 99(fluctuates)&lt;/li&gt;
&lt;li&gt;Increase page size from 432kb to 532kb(🤣 by adding an important images that was 50 49kb each that were required for SEO)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now to the good relationship i have discovered between hugo shortcodes and forestry snippets.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guys? Welcome to Part 2 of building the beautiful, fast, SEO optimized, progressive JAMstack blog.</p>
<p>If you didn’t check out part 1, kindly go do so here: <a href="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/" title="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/"><strong>https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/</strong></a></p>
<p>So we are continuing with Part 2.</p>
<p>Shall we begin?</p>
<h2 id="day-4">Day 4</h2>
<p>Nothing much to do so i did a bit of research</p>
<h2 id="day-5">DAY 5</h2>
<p>Here’s where the knowledge of Day 4 come to play.</p>
<ul>
<li>Linked the Manifest.json and all the app icons/favicons to the head section as you can remember i couldn’t do this because i was using the original theme’s layout folder so the only way was to copy their layout file to mine and that wasn’t an ideal situation. So i found a solution, Netlify’s Snippet Injection tool.(oh thank you <a href="https://netlify.com"><strong>netlify</strong></a>) I had heard of this tool but it was back then when i was using <a href="https://jekyllrc.org"><strong>Jekyll</strong></a>(another very good static site generator with thousands of themes), back then i only had 1 site deployed in netlify and i didn’t need to tool. So to continue i managed to link them successfully and the website began acting like and app.</li>
<li>Linked the Service Worker Register to the bottom of the body using the same Netlify Snippet Tool</li>
<li>Added the SEO meta tags together with the manifest.json and app icons</li>
<li>Added more Hugo Shortcodes and paired them with forestry snippets(since am using forestry as my CMS there’s no need to add the shortcodes manually just create a ___.snippet file in /.forestry/snippets/……. as for shortcodes they go under /layouts/shortcodes/…….. I’ll show you how to do this in just a bit.</li>
<li>Researched</li>
<li><strong>End of Day 5</strong></li>
</ul>
<h2 id="day-6">DAY 6</h2>
<ul>
<li>Added more hugo shortcodes and their respective forestry snippets</li>
<li>Added a <a href="https://blog.stephenajulu.com/feed.json"><strong>json feed</strong></a> because ……….. why not?</li>
<li>Added a <a href="https://blog.stephenajulu.com/404/"><strong>custom 404</strong></a> page replacing Netlify’s version</li>
<li>Added a Comment system that uses Github Issues as the base, the comments system is called <a href="https://utteranc.es"><strong>Utterances</strong></a></li>
<li>Researched</li>
<li><strong>End of Day 6</strong></li>
</ul>
<h2 id="day-7">DAY 7</h2>
<ul>
<li>Did a few tweaks and hacks</li>
<li>Added Google Analytics</li>
<li>Turned all images to .webp format because of it’s compression and small file size therefore bringing the total homepage size to 432kb from 3.4mb</li>
<li>Resized my author image from 1124×1024 to 160×60 or something there about(cant remember the correct sizes but they near those i have mentioned)</li>
<li>Minified and Unified a few Javascript files</li>
<li>Removed Google Analytics 🤣 It was slowing down my site because of the requests it made and also privacy issues</li>
<li>Managed to make the PageSpeed Desktop Score 100 while Mobile is at 98 99(fluctuates)</li>
<li>Increase page size from 432kb to 532kb(🤣 by adding an important images that was 50 49kb each that were required for SEO)</li>
</ul>
<p>Now to the good relationship i have discovered between hugo shortcodes and forestry snippets.</p>
<p><img src="https://ajulusthoughts.files.wordpress.com/2020/04/screenshot_2020-04-05-stephenajulu-ajulusthoughts1-hugo-shortcodes.webp?w=1012" alt="github hugo shortcodes" title="Hugo Shortcodes"></p>
<p><img src="https://ajulusthoughts.files.wordpress.com/2020/04/screenshot_2020-04-05-stephenajulu-ajulusthoughts1-forestry-snippets.webp?w=1012" alt="github forestry snippets" title="Forestry Snippet"></p>
<p>As you can see for every shortcode there’s a snippet, that’s because shortcodes usually have a small piece of code to embed in the page you want it to be activated.</p>
<p>![](/images/Annotation 2020-04-05 164626-1.webp)</p>
<p>So the first piece of code goes to the /layouts/shortcodes/shortcodename.html while the last one goes to .forestry/snippets/snippetname.snippet. This ensures that i don’t have to copy the last code everywhere manually, i just access them within forestry cms’s ui like this</p>


<p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/M-P0lVXehWM" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>





<p>So now instead of copying the shortcode link everywhere you can just add it as a forestry cms snippet and use it where you would like. Note: This only works if you use Forestry CMS</p>
<h2 id="unfinished-work">UNFINISHED WORK</h2>
<ul>
<li>Resize all images to a good size</li>
<li>SEO Optimize the site</li>
<li>Find a good free resource light analytic service</li>
<li>Copy all posts from <a href="https://ajulusthoughts.wordpress.com"><strong>Ajulu’s Thoughts</strong></a> to <a href="https://blog.stephenajulu.com"><strong>Ajulu’s Blog</strong></a></li>
<li>Cache all assets</li>
<li>Add Web Share</li>
<li>Add Push Notifications</li>
<li>Link back to <a href="https://stephenajulu.com" title="https://stephenajulu.com"><strong>https://stephenajulu.com</strong></a></li>
<li>Add Service Worker Version 3 that caches everything</li>
<li>Debug</li>
<li>Optimize</li>
<li>Make changes to ui</li>
<li>Release it back to the wild as Novela v3</li>
</ul>
<h3 id="pagespeed-insights-for-blogstephenajulucom"><em>PageSpeed Insights</em> for blog.stephenajulu.com</h3>
<p><strong><em>Mobile Score</em> : 98 99</strong><br>
TTT, First Meaningful Paint, First Contentful Paint, First CPU idle: 1.3 seconds<br>
<strong><em>Desktop Score</em> : 100</strong><br>
TTT, First Meaningful Paint, First Contentful Paint, First CPU idle: 0.5 seconds<br>
<strong><em>Our Goal is 100 in Both</em></strong></p>
<h3 id="ajulus-thoughts--delivering-quality-tech-cybersecurity--dev-content-since-november-2016"><a href="https://ajulusthoughts.wordpress.com"><strong>Ajulu’s Thoughts</strong></a> – Delivering Quality Tech, Cybersecurity &amp; Dev Content Since November 2016</h3>
<p>Hey Devs? Found anything wrong with this info? Kindly write your comment down below on what to change.</p>
<p>I will appreciate it, if you take 10 seconds of your time to check out my donations page and donate to the blog and other causes. 40% of the donation goes to buying this blog an official domain name, the rest goes to charity eg supporting children homes. Any amount received will be shown, from whom and to where it went. I will also include screenshots of inflow and outflow. So go check it out: <a href="https://ajulusthoughts.wordpress.com/donate/"><strong>Donations</strong></a> and donate! You can also buy me something via the wishing list. Thank you and have a wonderful day.</p>
<p>Before i go, i would like to praise and thank all my favorite tools, products and companies</p>
<ul>
<li><a href="https://github.com" title="GitHub"><strong>Github</strong></a></li>
<li><a href="https://netlify.com" title="Netlify"><strong>Netlify</strong></a></li>
<li><a href=""><strong>Cloudflare</strong></a></li>
<li><a href="https://forestry.io" title="Forestry"><strong>Forestry CMS</strong></a></li>
<li><a href="https://formspree.io" title="Formspree"><strong>Formspree</strong></a></li>
<li><a href="https://pwastarter.love2dev.com" title="PWAStarter"><strong>PWAStarter</strong></a></li>
<li><a href="https://pwabuilder.com" title="PWABuilder"><strong>PWABuilder</strong></a></li>
<li><a href="https://namecheap.com" title="NameCheap"><strong>Namecheap</strong></a></li>
<li><a href="https://gohugo.io" title="Hugo"><strong>Hugo</strong></a></li>
<li><a href="https://jekyllrc.org" title="Jekyll"><strong>Jekyll</strong></a></li>
</ul>
<p>Il&rsquo;l do a review of each but for now i can recommend anyone to these. They are the best.</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/Screenshot_2020-03-31_20Stephen_20Ajulu_27s_20Blog_e31928d93e0d53d288cde238ac72207d.webp" medium="image"/></item><item><title>Building a Beautiful Progressive JAMstack Blog Part 1: Day 1 to 3</title><link>https://ajulu.netlify.app/posts/building-a-beautiful-progressive-jamstack-blog-part-1-day-1-to-3/</link><pubDate>Tue, 31 Mar 2020 15:25:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/building-a-beautiful-progressive-jamstack-blog-part-1-day-1-to-3/</guid><description>&lt;p&gt;Hey guys? Today we will be building a beautiful, fast, SEO optimized, progressive JAMstack blog for free. Step by step.&lt;/p&gt;
&lt;p&gt;Shall we begin?&lt;/p&gt;
&lt;h3 id="day-1"&gt;&lt;strong&gt;Day 1&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Choose The Best Static Site Generator. Weigh Pros and Cons. Research.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;Choice 1: Jekyll&lt;/em&gt;&lt;/strong&gt; – Built on Ruby on Rails, Very Good Community, Extensive Knowledge, Used and Endorsed by &lt;a href="https://github.com"&gt;&lt;strong&gt;GitHub&lt;/strong&gt;&lt;/a&gt;, Very Slow Build. Not good with large blogs(over 30 posts) due to slow build time. Hence not suitable.&lt;br&gt;
❌&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;Choice 2: Gatsby&lt;/em&gt;&lt;/strong&gt; – Built on React, GraphQl and Webpack, Excellent Community, Lack of Sufficient Knowledge, Used and Endorsed by &lt;a href="https://contentful.com"&gt;&lt;strong&gt;Contentful&lt;/strong&gt;&lt;/a&gt;, Lighting Fast Build, Good With Everything, But Not Suitable Due To Time Constraint. However Further Research to Be Done For Future Purposes.&lt;br&gt;
✖️&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;Choice 3: Hugo&lt;/em&gt;&lt;/strong&gt; – Built on Go, Excellent Community, Sufficient Knowledge, Used and Endorsed by &lt;a href="https://forestry.io"&gt;&lt;strong&gt;Forestry.io&lt;/strong&gt;&lt;/a&gt;, Fast Build, Very Good for Big Blogs, In fact its Built for Large Websites and Blogs.&lt;br&gt;
✔️&lt;/li&gt;
&lt;li&gt;Choice? &lt;strong&gt;Hugo&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;End of Day 1&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="day-2"&gt;&lt;strong&gt;Day 2&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Find a good Hugo theme&lt;/li&gt;
&lt;li&gt;Build the blog&lt;/li&gt;
&lt;li&gt;Host on GitHub&lt;/li&gt;
&lt;li&gt;Create 2 branches(Master and Test Features)&lt;/li&gt;
&lt;li&gt;Add to netlify for continuous deployment&lt;/li&gt;
&lt;li&gt;Assign master branch domain name: blog.stephenajulu.com&lt;/li&gt;
&lt;li&gt;Research&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;End of Day 2&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="day-3"&gt;&lt;strong&gt;Day 3&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Create a manifest.json&lt;/li&gt;
&lt;li&gt;Generate favicons and app icons for Android, IOS, and Windows&lt;/li&gt;
&lt;li&gt;Create a splashscreen&lt;/li&gt;
&lt;li&gt;Build the “Add To Homescreen” script(a2hs.js, .min.js &amp;amp; .css)&lt;/li&gt;
&lt;li&gt;Build the Service Worker(sw.js) with precache on&lt;/li&gt;
&lt;li&gt;Upload to GitHub (110 icons, manifest.json, sw.js)&lt;/li&gt;
&lt;li&gt;Research&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;End of Day 3&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Now you are up to date.&lt;br&gt;
The reason i documented my process here is so that anyone can learn.&lt;br&gt;
I am a crappy dev, i don’t know as much js as i wish i knew.&lt;br&gt;
But i believe we all have something to learn from each other.&lt;br&gt;
Ask me questions in the comment section and I’ll answer them to the best of my knowledge.&lt;br&gt;
I am building a Progressive JAMstack Blog.&lt;br&gt;
You can view the up to date version here: &lt;a href="https://blog.stephenajulu.com" title="https://blog.stephenajulu.com"&gt;&lt;strong&gt;https://blog.stephenajulu.com&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guys? Today we will be building a beautiful, fast, SEO optimized, progressive JAMstack blog for free. Step by step.</p>
<p>Shall we begin?</p>
<h3 id="day-1"><strong>Day 1</strong></h3>
<p>Choose The Best Static Site Generator. Weigh Pros and Cons. Research.</p>
<ul>
<li><strong><em>Choice 1: Jekyll</em></strong> – Built on Ruby on Rails, Very Good Community, Extensive Knowledge, Used and Endorsed by <a href="https://github.com"><strong>GitHub</strong></a>, Very Slow Build. Not good with large blogs(over 30 posts) due to slow build time. Hence not suitable.<br>
❌</li>
<li><strong><em>Choice 2: Gatsby</em></strong> – Built on React, GraphQl and Webpack, Excellent Community, Lack of Sufficient Knowledge, Used and Endorsed by <a href="https://contentful.com"><strong>Contentful</strong></a>, Lighting Fast Build, Good With Everything, But Not Suitable Due To Time Constraint. However Further Research to Be Done For Future Purposes.<br>
✖️</li>
<li><strong><em>Choice 3: Hugo</em></strong> – Built on Go, Excellent Community, Sufficient Knowledge, Used and Endorsed by <a href="https://forestry.io"><strong>Forestry.io</strong></a>, Fast Build, Very Good for Big Blogs, In fact its Built for Large Websites and Blogs.<br>
✔️</li>
<li>Choice? <strong>Hugo</strong></li>
<li><strong>End of Day 1</strong></li>
</ul>
<h3 id="day-2"><strong>Day 2</strong></h3>
<ul>
<li>Find a good Hugo theme</li>
<li>Build the blog</li>
<li>Host on GitHub</li>
<li>Create 2 branches(Master and Test Features)</li>
<li>Add to netlify for continuous deployment</li>
<li>Assign master branch domain name: blog.stephenajulu.com</li>
<li>Research</li>
<li><strong>End of Day 2</strong></li>
</ul>
<h3 id="day-3"><strong>Day 3</strong></h3>
<ul>
<li>Create a manifest.json</li>
<li>Generate favicons and app icons for Android, IOS, and Windows</li>
<li>Create a splashscreen</li>
<li>Build the “Add To Homescreen” script(a2hs.js, .min.js &amp; .css)</li>
<li>Build the Service Worker(sw.js) with precache on</li>
<li>Upload to GitHub (110 icons, manifest.json, sw.js)</li>
<li>Research</li>
<li><strong>End of Day 3</strong></li>
</ul>
<p>Now you are up to date.<br>
The reason i documented my process here is so that anyone can learn.<br>
I am a crappy dev, i don’t know as much js as i wish i knew.<br>
But i believe we all have something to learn from each other.<br>
Ask me questions in the comment section and I’ll answer them to the best of my knowledge.<br>
I am building a Progressive JAMstack Blog.<br>
You can view the up to date version here: <a href="https://blog.stephenajulu.com" title="https://blog.stephenajulu.com"><strong>https://blog.stephenajulu.com</strong></a></p>
<h3 id="unfinished-work"><strong>Unfinished Work</strong></h3>
<ul>
<li>Linking the manifest.json to the head</li>
<li>Adding a few meta tags for SEO</li>
<li>Add the Service Worker register to the bottom of the body tag</li>
<li>Add the Add to Homescreen below the service worker register</li>
<li>Add the Web Share API</li>
<li>Add the Push Notifications API</li>
<li>Link the blog back to <a href="https://stephenajulu.com"><strong>stephenajulu.com</strong></a></li>
<li>Debug and make sure everything works well including the service worker.</li>
<li>Copy all blog posts from <a href="https://ajulusthoughts.wordpress.com" title="https://ajulusthoughts.wordpress.com"><strong>https://ajulusthoughts.wordpress.com</strong></a> to <a href="https://blog.stephenajulu.com" title="https://blog.stephenajulu.com"><strong>https://blog.stephenajulu.com</strong></a></li>
<li>Optimize Image Assets</li>
<li>Add gzip</li>
</ul>
<p>Once all the steps are done, the blog should be able to be installed (like a native app), viewed offline (no internet thanks to the Service Worker), and when there’s internet i should be able to inform those who’ve installed it (thanks to the Push Notifications API) that there’s a new blog post, and inform them on the coming give away that is strictly reserved for them, among other things.</p>
<p><strong>NOTE:</strong> I keep reiterating my personal site every year, working on a new design, using hugo as well but still haven’t assigned the domain name, so you can get the sneak peak of the new design here: <a href="https://stephenajulu.nelify.com" title="https://stephenajulu.nelify.com"><strong>https://stephenajulu.nelify.com</strong></a> it’s version 5. The previous versions are in the footer of <a href="https://stephenajulu.com" title="https://stephenajulu.com"><strong>https://stephenajulu.com</strong></a>. Now why do i do this? To learn new technologies while doing something meaningful and also to make sure my site is up-to date. <strong>Also note</strong> <a href="https://ajulusthoughts.wordpress.com"><strong>ajulusthoughts.wordpress.com</strong></a> <strong>is my sweetheart nothing would ever replace it unless it looks exactly like it and promises better performance</strong>. It took me 5 years to build this blog, i am not throwing it away. It will still be updated and will remain great, might even get it’s domain name(ajulusthoughts.com) but <a href="https://blog.stephenajulu.com"><strong>blog.stephenajulu.com</strong></a> will be more like a personal blog while this remains a brand blog.</p>
<h3 id="important-things-to-know"><strong>Important things to know</strong></h3>
<p>A <strong>progressive web application</strong> is just a website that behaves like a native app(like the ones installed from google play store). Thanks to a service worker, the website can be accessed online because the sw caches the site. It can be installed upon visiting the website, you’ll either see a pop-up(thanks to the Add to Homescreen script) or see a home icon with a plus on it(if Firefox). Progressive Web Apps are faster than any website you’ve seen because of the cache feature. This new blog uses a headless cms: <a href="https://forestry.io"><strong>Forestry.io</strong></a></p>
<p>Those things left should take 2 days. I run into a bit of a hiccup, an issue with the blog that needs to be fixed. Already submitted an issue via github, so it should be resolved by tomorrow. It’s the reason i didn’t complete the process today. I can’t add the scripts to the head and body section because i forgot to include the “layouts/partials/head.html” and “layouts/index.md”<br>
I also forgot, I’ll be adding a newsletter section to every page but that’s until the above issues are fixed.</p>
<p>To experience PWAs, visit this link: <a href="https://tomango.co.uk" title="https://tomango.co.uk"><strong>https://tomango.co.uk</strong></a></p>
<p>Static Site Generators, Headless CMS, JAMstack, Progressive Web Applications and Serverless are the Future!Why?</p>
<ul>
<li>Cost effective</li>
<li>Lighting fast</li>
<li>Can be used on any device(cross platform)</li>
<li>No servers</li>
<li>Feature Rich</li>
<li>Can increase engagement way more than native apps and traditional websites</li>
</ul>
<p>For security and even faster speeds, I have passed it through Cloudflare and enabled all of Netlify’s asset optimization. The site isn’t as fast as it should be due to the fact that i haven’t added the service worker register.</p>
<h4></h4>
<p>Also note PWAs don’t have a good desktop support yet, only Desktop Chromiums(Chrome, Brave, Opera etc) support PWAs(according to my tests, Firefox is yet to release an update with support but PWAs are fully supported by Android, Smart TVs, Smart Watches, KAIOS, Linux, Chrome OS and such. PWAs can also be uploaded to all the stores (Google Play, Microsoft, KAIOS Stores and among others)</p>
<h3 id="pagespeed-insights-for-blogstephenajulucom">PageSpeed Insights For blog.stephenajulu.com</h3>
<p><strong><em>Mobile Score</em> : 96</strong><br>
TTT, First Meaningful Paint, First Contentful Paint, First CPU idle: 2 seconds<br>
<strong><em>Desktop Score</em> : 97</strong><br>
TTT, First Meaningful Paint, First Contentful Paint, First CPU idle: 0.7 seconds<br>
<strong><em>Our Goal is 98 or 99</em></strong><br>
Sadly Day 4 will start tomorrow as i am working on fixing the hiccup we encountered myself, no response on the issue.</p>
<h3 id="ajulus-thoughts--delivering-quality-tech-cybersecurity--dev-content-since-november-2016"><a href="https://ajulusthoughts.wordpress.com"><strong>Ajulu’s Thoughts</strong></a> – Delivering Quality Tech, Cybersecurity &amp; Dev Content Since November 2016</h3>
<p>Hey Devs? Found anything wrong with this info? Kindly write your comment down below on what to change.</p>
<p>I will appreciate it, if you take 10 seconds of your time to check out my donations page and donate to the blog and other causes. 40% of the donation goes to buying this blog an official domain name, the rest goes to charity eg supporting children homes. Any amount received will be shown, from whom and to where it went. I will also include screenshots of inflow and outflow. So go check it out: <a href="https://ajulusthoughts.wordpress.com/donate/"><strong>Donations</strong></a> and donate! You can also buy me something via the wishing list. Thank you and have a wonderful day.</p>
<p>OwlSec Technologies design and develop fast, secure and search engine optimized progressive websites that use JAMstack or CMS based technologies e.g WordPress, Drupal and more. Making sure a business or individual has not just an online presence but also a lead generation strategy.<br>
Get a quote: <a href="mailto:info@owlsectechnologies.co.ke"><strong>info@owlsectechnologies.co.ke</strong></a><br>
Visit our website: <a href="https://owlsectechnologies.co.ke"><strong>owlsectechnologies.co.ke</strong></a></p>
<h1 id="source-ajulu"><strong>SOURCE:</strong> <a href="https://ajulusthoughts.wordpress.com/2020/03/31/building-a-beautiful-progressive-jamstack-blog-part-1/"><strong>AJULU&rsquo;S THOUGHTS</strong></a></h1>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/Screenshot_2020-03-31_20Stephen_20Ajulu_27s_20Blog_e31928d93e0d53d288cde238ac72207d.webp" medium="image"/></item><item><title>How to Build &amp; Deploy A JAMstack Website with Stackbit</title><link>https://ajulu.netlify.app/posts/how-to-build-deploy-a-jamstack-website-with-stackbit/</link><pubDate>Sat, 01 Feb 2020 09:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/how-to-build-deploy-a-jamstack-website-with-stackbit/</guid><description>&lt;p&gt;Hey guy’s what’s up?&lt;/p&gt;
&lt;p&gt;Well today i would like to thank you for your support and constant reading of this blog. I just got off an email with the founder of &lt;a href="https://www.feedspot.com/?ref=blog"&gt;&lt;strong&gt;Feedspot&lt;/strong&gt;&lt;/a&gt; Anuj Agarwa. And guess what guys. I just got selected as one of the &lt;a href="https://blog.feedspot.com/technology_blogs/"&gt;&lt;strong&gt;Top 200 Technology Blogs&lt;/strong&gt;&lt;/a&gt; on the Internet. I am super excited and thankful. So i thought why not celebrate and give you guys a gift. And so here it is: How to build and deploy a fast jamstack website with stackbit for next to nothing/almost free! Let’s dive right in but before that, make sure you check out &lt;a href="https://blog.feedspot.com/technology_blogs/"&gt;&lt;strong&gt;Feedspot’s Top 200 Technology Blogs&lt;/strong&gt;&lt;/a&gt;. Also giveaways coming soon.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guy’s what’s up?</p>
<p>Well today i would like to thank you for your support and constant reading of this blog. I just got off an email with the founder of <a href="https://www.feedspot.com/?ref=blog"><strong>Feedspot</strong></a> Anuj Agarwa. And guess what guys. I just got selected as one of the <a href="https://blog.feedspot.com/technology_blogs/"><strong>Top 200 Technology Blogs</strong></a> on the Internet. I am super excited and thankful. So i thought why not celebrate and give you guys a gift. And so here it is: How to build and deploy a fast jamstack website with stackbit for next to nothing/almost free! Let’s dive right in but before that, make sure you check out <a href="https://blog.feedspot.com/technology_blogs/"><strong>Feedspot’s Top 200 Technology Blogs</strong></a>. Also giveaways coming soon.</p>
<p>So now, let’s dive in!</p>
<ol>
<li>Go to <a href="https://stackbit.com"><strong>Stackbit’s</strong></a> website</li>
<li>Click “Sitebuilder” on your top right in the menu.</li>
<li>And let’s begin the process</li>
<li>Follow The Videos👇👇👇👇👇</li>
</ol>



<p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/nSSksvqP3Rk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>

<br>

<p>

<iframe width="560" height="315" src="https://www.youtube.com/embed/HQlRmpT6D-8" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

 </p>

 




]]></content:encoded><media:content url="https://ajulu.netlify.app/images/stackbit-tuts-with-audio2_moment.webp" medium="image"/></item><item><title>Tor, Proxychains and VPNs</title><link>https://ajulu.netlify.app/posts/tor-proxychains-and-vpns/</link><pubDate>Sun, 24 Nov 2019 09:00:00 +0000</pubDate><guid>https://ajulu.netlify.app/posts/tor-proxychains-and-vpns/</guid><description>&lt;p&gt;Hey guys! How are you doing? I am back with another post.&lt;/p&gt;
&lt;p&gt;Today i want to debunk, and explain how Tor and Proxy chains work. What they are. And how to truly become anonymous&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Anonymity&lt;/strong&gt; is an interesting protective weapon, whether inside or outside the computer network. In this post I’ll introduce two basic tips on this topic using &lt;strong&gt;Tor&lt;/strong&gt; and &lt;strong&gt;Proxychains&lt;/strong&gt;, so come on!&lt;/p&gt;
&lt;h3 id="what-is-tor"&gt;What is &lt;strong&gt;Tor&lt;/strong&gt;?&lt;/h3&gt;
&lt;p&gt;Tor stands for The Onion Router basically just like an onion, there are multi skins hiding what is inside.&lt;/p&gt;</description><content:encoded><![CDATA[<p>Hey guys! How are you doing? I am back with another post.</p>
<p>Today i want to debunk, and explain how Tor and Proxy chains work. What they are. And how to truly become anonymous</p>
<p><strong>Anonymity</strong> is an interesting protective weapon, whether inside or outside the computer network. In this post I’ll introduce two basic tips on this topic using <strong>Tor</strong> and <strong>Proxychains</strong>, so come on!</p>
<h3 id="what-is-tor">What is <strong>Tor</strong>?</h3>
<p>Tor stands for The Onion Router basically just like an onion, there are multi skins hiding what is inside.</p>
<p>Tor was made by the US Navy. So even though it does make you anonymous because it bounces your traffic around. If you do something illegal while using it you can be sure they’ll find you.<br>
It will take a while but they will. It’s their system.<br>
The key to being 80% anonymous is to use a proxy chain together with Tor.</p>
<h3 id="what-is-a-vpn">What is A <strong>VPN</strong>?</h3>
<p>VPN stands for Virtual Private Network. This is a type of software that allows you to connect to the internet via an encrypted tunnel, which is routed through a server. It hides your IP address and masks your online identity so that all of your online actions are hidden.</p>
<h3 id="what-is-proxychains">What is <strong>Proxychains</strong>?</h3>
<p>This is an open source software for GNU/Linux systems.</p>
<p>Proxychains – a tool that forces any TCP connection made by any given application to follow through proxy like TOR or any other SOCKS4, SOCKS5 or HTTP(S) proxy.</p>
<p>To see how they can be used together for maximum security, check out this tutorial.</p>


<p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/C4FYS_7vK3A" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>





<p>Proxy chains are basically proxies chained together, this will hide your IP by giving you a different IP and makes people think you come from Russia(or any country depending with the proxies you use) when you’re actually in Kenya because it also bounces your traffic around. The problem with all these methods is you should expect slower internet speeds. Because by bouncing your connection around, websites will load slower. So unless you have like 15mbps internet and above sure your internet connection will be slow. Slow enough to make you bang your computer and start talking to random inanimate objects. So it’s really more of a need to. If you need it go ahead use Tor, to be even safer add proxy-chains and to be even more safer add a non 14 eyes VPN that doesn’t log your traffic, doesn’t ask for much info, you can pay with crypto and in case they are given a court order would rather wipe their hard drives clean than comply and give federal agencies data.</p>
<p>Check this website out to find the best VPN for you: <a href="https://www.privacytools.io/providers/vpn/">VPN Guide</a></p>
<p>You can also refer to this website for all things Privacy, Security and Anonymity: <a href="https://www.privacytools.io/"><strong>PrivacyTools.io</strong></a></p>
<p>To conclude: these tools used separately result in a privacy nightmare. Used in conjunction and you get the closest thing to 95% security, anonymity and privacy. Remember there is nothing like 100% Anonymity, Security and Privacy. If someone out there wants to find you. It will take time but they will eventually catch up. In Tor the one who owns the end node can see all the data. In VPN the one who owns the company can probably see all the data. In ProxyChains your ISP and the last proxy server can see all the data.</p>
<p>I encourage anyone and everyone, if you see wrong info on this site, comment and i will research and change it, if you find interesting content comment down below. Have some topics? Comment down below. Need more info? Comment Down Below.</p>
<p>Well that’s it for today guys, see you soon and have a fantastic day!</p>
]]></content:encoded><media:content url="https://ajulu.netlify.app/images/ohfijkaejvkhw.webp" medium="image"/></item></channel></rss>