<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Ishini Avindya</title>
    <description>The latest articles on Forem by Ishini Avindya (@_ishiniavindya).</description>
    <link>https://forem.com/_ishiniavindya</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F287293%2Fab44a6c3-dfe1-409c-aa2a-6cffb5a4cd2d.jpg</url>
      <title>Forem: Ishini Avindya</title>
      <link>https://forem.com/_ishiniavindya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/_ishiniavindya"/>
    <language>en</language>
    <item>
      <title>Host your blog on a subdirectory using Cloudflare Workers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Fri, 26 Jan 2024 00:01:43 +0000</pubDate>
      <link>https://forem.com/hyvor/host-your-blog-on-a-subdirectory-using-cloudflare-workers-3pn8</link>
      <guid>https://forem.com/hyvor/host-your-blog-on-a-subdirectory-using-cloudflare-workers-3pn8</guid>
      <description>&lt;p&gt;At Hyvor Blogs, we have been working on &lt;a href="https://blogs.hyvor.com/docs/self-hosting-web-framework"&gt;several different solutions&lt;/a&gt; to allow hosting a blog on a sub-directory. Out of all the solutions, Cloudflare Workers is by far the easiest solution if you are already using Cloudflare for DNS. It will only take about 10-15 minutes to complete the setup. &lt;strong&gt;No coding is required.&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If this is the first time hearing about Hyvor Blogs, see &lt;a href="https://blogs.hyvor.com/"&gt;our homepage&lt;/a&gt; for more details on how we make blogging easy!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;Sub-directory hosting is handled by our &lt;a href="https://github.com/hyvor/hyvor-blogs-cloudflare-workers"&gt;hyvor/hyvor-blogs-cloudflare-workers&lt;/a&gt; script, which you can easily deploy to your own Cloudflare account as a Worker. Here's what it does under the hood (you don't have to understand any of this to use it 🙏)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It uses &lt;a href="https://workers.cloudflare.com/"&gt;Cloudflare Workers&lt;/a&gt; to create a serverless application to serve your blog.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It uses &lt;a href="https://blogs.hyvor.com/docs/api-delivery"&gt;Hyvor Blogs Delivery API&lt;/a&gt; to fetch serving instructions from Hyvor Blogs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then, it caches responses in &lt;a href="https://developers.cloudflare.com/workers/learning/how-kv-works/"&gt;Cloudflare KV&lt;/a&gt; (key-value storage). All resources in your blog (images, CSS, JS, and even HTML files) are cached in Cloudflare's global network. This means everything in your blog is served to end users from the nearest node in the network. Your blog will be &lt;strong&gt;blazingly fast&lt;/strong&gt;!&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then, it uses Hyvor Blogs &lt;a href="https://blogs.hyvor.com/docs/webhooks"&gt;Webhooks&lt;/a&gt; to clear the cache when you update your blog posts. (Due to this, there can be a delay of a few seconds before you see updates in your blog after updating a post.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finally, we use &lt;a href="https://developers.cloudflare.com/workers/configuration/routing/routes/"&gt;Cloudflare Workers Routes&lt;/a&gt; of your domain to route all &lt;code&gt;example.com/blog*&lt;/code&gt;requests to the worker.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's get started!&lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;A blog created on &lt;a href="https://blogs.hyvor.com/"&gt;Hyvor Blogs&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A domain that uses &lt;a href="https://www.cloudflare.com/"&gt;Cloudflare for DNS&lt;/a&gt;. It must be proxied through Cloudflare (orange cloud turned on).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A &lt;a href="https://github.com/"&gt;GitHub&lt;/a&gt; account (free)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step-by-step
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt; Hyvor Blogs&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-   [1.1 Hosting URL](https://hyvor.com/blog#hosting-url)

-   [1.2 Delivery API Key](https://hyvor.com/blog#delivery-api-key)

-   [1.3 Webhooks](https://hyvor.com/blog#webhooks)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; Cloudflare Workers&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-   [2.1 KV store](https://hyvor.com/blog#create-kv)

-   [2.2 Deployment](https://hyvor.com/blog#deployment)

-   [2.3 Variables](https://hyvor.com/blog#variables)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; Cloudflare Workers Routes&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-   [3.1 Set up Workers Routes](https://hyvor.com/blog#worker-routes)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; Finalizing &amp;amp; Debugging&lt;/li&gt;
&lt;/ol&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-   &lt;a href="https://hyvor.com/blog#verify"&gt;4.1 Verify Features&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://hyvor.com/blog#worker-logs"&gt;4.2 Cloudflare Worker Logs&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://hyvor.com/blog#clear-cache"&gt;4.3 Clear Cache&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href="https://hyvor.com/blog#hyvor-blogs"&gt;1. Hyvor Blogs&lt;/a&gt;&lt;br&gt;
&lt;/h2&gt;


&lt;p&gt;First, let's make your blog hostable on a sub-directory.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#hosting-url"&gt;1.1 Hosting URL&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Go to &lt;strong&gt;Hyvor Blogs Console → Settings → Hosting&lt;/strong&gt; and set the following options.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Febstfwoa2moaaxcr3tlr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Febstfwoa2moaaxcr3tlr.png" alt="Image description" width="800" height="294"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--R_6dKMpx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/KakwGqnDmRM8tqnceYZPeyg4kGaiMlQmJzPDsiI9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--R_6dKMpx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/KakwGqnDmRM8tqnceYZPeyg4kGaiMlQmJzPDsiI9.png" alt="Changing Hosting URL in the Hyvor Blogs Console" width="800" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hosting URL&lt;/p&gt;

&lt;p&gt;Then, save.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#delivery-api-key"&gt;1.2 Delivery API Key&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Go to &lt;strong&gt;Hyvor Blogs Console → Settings → API Keys&lt;/strong&gt; and generate a Delivery API key.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YjwNbMIu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/htAyn5bTtq7bcP3UPGdnCG5zqw6RdYR3TPjC8XAc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YjwNbMIu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/htAyn5bTtq7bcP3UPGdnCG5zqw6RdYR3TPjC8XAc.png" alt="Generate Delivery API key in the Hyvor Blogs Console" width="800" height="494"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Generate Delivery API Key&lt;/p&gt;

&lt;p&gt;We'll need the generated API key in a later step, which you can copy from the API Keys section.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WIElITcW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/2l5MZa8IzY0TexLrMeFbkcHQRDDeRfonAS6SXZuQ.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WIElITcW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/2l5MZa8IzY0TexLrMeFbkcHQRDDeRfonAS6SXZuQ.png" alt="How to copy the Delivery API Key" width="800" height="343"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How to copy the Delivery API Key&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#webhooks"&gt;1.3 Webhooks&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Next, go to &lt;strong&gt;Hyvor Blogs Console → Settings → Webhooks &lt;/strong&gt;and create a webhook with the following values.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd8j3neugtg3g7906g9a6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd8j3neugtg3g7906g9a6.png" alt="Image description" width="800" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EAa9FlxF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/IOgmcB7QIs75BdibYufYVEAfk13pFBuOohOvcZws.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EAa9FlxF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/IOgmcB7QIs75BdibYufYVEAfk13pFBuOohOvcZws.png" alt="Create Webhook" width="800" height="587"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create Webhook&lt;/p&gt;

&lt;p&gt;We'll need the webhook secret in a next step.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3sx_k0ZL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/XUP6PNvBewCXfRM5mgLsHxUIT3AjKmCI3yFZBO0C.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3sx_k0ZL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/XUP6PNvBewCXfRM5mgLsHxUIT3AjKmCI3yFZBO0C.png" alt="Copying Webhook Secret from the Hyvor Blogs Console" width="800" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Copying Webhook Secret&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://hyvor.com/blog#cloudflare-workers"&gt;2. Cloudflare Workers&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Let's create our worker.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#create-kv"&gt;2.1 KV Store&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Log into the &lt;a href="https://dash.cloudflare.com/?to=/:account/workers"&gt;Cloudflare Dashboard&lt;/a&gt;. Then, navigate to &lt;strong&gt;Workers &amp;amp; Pages → KV&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--04ZYdOfh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JCcxLeJL8KnHAmCIKHkRvnz7AlICd8BxepUq1CZB.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--04ZYdOfh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JCcxLeJL8KnHAmCIKHkRvnz7AlICd8BxepUq1CZB.png" alt="Cloudflare KV Settings" width="800" height="1062"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cloudflare KV&lt;/p&gt;

&lt;p&gt;Then, create a new namespace with a descriptive name.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--h_U4Hag5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/C0G1qT5dGatnFS5kbcSqiPNuvjGilquAOLHVHoxe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--h_U4Hag5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/C0G1qT5dGatnFS5kbcSqiPNuvjGilquAOLHVHoxe.png" alt="Create KV namespace in Cloudflare Workers" width="800" height="590"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create KV Namespace&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#deployment"&gt;2.2 Deployment&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Click the button below to initiate a new deployment to Cloudflare workers.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://deploy.workers.cloudflare.com/?url=https://github.com/hyvor/hyvor-blogs-cloudflare-workers"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RpdwhQFo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://deploy.workers.cloudflare.com/button" alt="Deploy to Cloudflare Workers" width="184" height="39"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, we'll follow the steps shown on the deployment page.&lt;/p&gt;

&lt;p&gt;First, authorize Github to use Workers. You will need a free GitHub account to do this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uzpXjVd9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/2YDCh07pBzIFB26STw6e677ohkECJDRtHSqgreqV.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uzpXjVd9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/2YDCh07pBzIFB26STw6e677ohkECJDRtHSqgreqV.png" alt="Authorize Workers" width="800" height="747"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Authorize GitHub with Workers&lt;/p&gt;

&lt;p&gt;Next, select "I have an account"&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WtXJU1qT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/uozS1aOf7BwDnuePbSChKitJvAarHOcHYowSoXZa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WtXJU1qT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/uozS1aOf7BwDnuePbSChKitJvAarHOcHYowSoXZa.png" alt="I have an account on Cloudflare workers deployment" width="800" height="383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For the next step, we will need your Cloudflare Account ID and an API token.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XTrlMprv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/FtcfTyzBQ9JrfRg3zyPTezCbvpktvCE6XmygO6Ua.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XTrlMprv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/FtcfTyzBQ9JrfRg3zyPTezCbvpktvCE6XmygO6Ua.png" alt="Account ID and API Token requirement" width="800" height="647"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Account ID and API Token&lt;/p&gt;

&lt;p&gt;The easiest way to find this is by going to the Overview section of your domain and finding the Account ID on the right. Copy and paste it in the deployment page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cOQU50Fy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/AICd3I6lBuR2NnAoHuaA2bni7WFjv04DoaTdAdS3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cOQU50Fy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/AICd3I6lBuR2NnAoHuaA2bni7WFjv04DoaTdAdS3.png" alt="Copy Account ID in Cloudflare" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cloudflare Account ID&lt;/p&gt;

&lt;p&gt;Then, click the "Get your API token" link below the account ID.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ChBnyQOU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/NxCd6rEyzrSg5dX3IhoHpdFMkcTSxVrsKovdHMmy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ChBnyQOU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/NxCd6rEyzrSg5dX3IhoHpdFMkcTSxVrsKovdHMmy.png" alt="Create Token" width="800" height="334"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create API Token&lt;/p&gt;

&lt;p&gt;Use the Edit Cloudflare Workers template.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7dbUrLqH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/EsuWsqmE91yeJISPxn5w611ZZOemOmJFQwvzWOnO.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7dbUrLqH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/EsuWsqmE91yeJISPxn5w611ZZOemOmJFQwvzWOnO.png" alt="Create Token - Select Cloudflare Workers" width="800" height="714"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the configuration, set the Account Resources to 'All accounts' and Zone resources to your domain name.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qyxjzMVh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JQlj1k0lE0sQVsHpcJcScn4bHtz1LgzuUAYJobmw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qyxjzMVh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JQlj1k0lE0sQVsHpcJcScn4bHtz1LgzuUAYJobmw.png" alt="Create Token - Select Resources Options" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create your API token.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pC0lF0jI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/BVjB0TiXpmvHhq9Qk9yi910DtL59PUmeKHlsV9aE.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pC0lF0jI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/BVjB0TiXpmvHhq9Qk9yi910DtL59PUmeKHlsV9aE.png" alt="Create your API token - confirm" width="800" height="364"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Copy the API token and paste it on the deployment page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--yCr65mGg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/epwbVtSdR4GyP5NEeSxoD608Hxkj03a7Eyfvp20a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yCr65mGg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/epwbVtSdR4GyP5NEeSxoD608Hxkj03a7Eyfvp20a.png" alt="Copy API token" width="800" height="303"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then, Connect your account.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--y1LZDHz9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/yqYarePcjLeQXpMYKFqHg9R6hXNjgMmUoLtuCUf8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--y1LZDHz9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/yqYarePcjLeQXpMYKFqHg9R6hXNjgMmUoLtuCUf8.png" alt="Connect your Cloudflare acccount for the deployment" width="800" height="646"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, fork the github repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vko7CJYD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/dqpAysm1sW7XPHmYWrXYZPStb7HmCoqFIZifdbte.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vko7CJYD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/dqpAysm1sW7XPHmYWrXYZPStb7HmCoqFIZifdbte.png" alt="Fork the github repository" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to the Github Actions page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---lVwWg-9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/MniEoL3Kg2a8LFt0MUZ1IEfpZ7ilgAoPIu0vbadB.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---lVwWg-9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/MniEoL3Kg2a8LFt0MUZ1IEfpZ7ilgAoPIu0vbadB.png" alt="Go to github actions page" width="800" height="459"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enable Github Actions.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TJb3M6kA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/KaHYSMY0R83HGxAoUzGQ3O2uchqLFAFjB0HP3iFA.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TJb3M6kA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/KaHYSMY0R83HGxAoUzGQ3O2uchqLFAFjB0HP3iFA.png" alt="Enable github actions" width="800" height="420"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;Workflows enabled&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--A2mftNp7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/XPNuH2JpcOY7kMupr0qJP3qA5fSyTAKkFuiMnY7P.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--A2mftNp7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/XPNuH2JpcOY7kMupr0qJP3qA5fSyTAKkFuiMnY7P.png" alt="Workflows enabled" width="800" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Finally, DEPLOY!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YHgMdb1V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/kZkHAbHDLwrmpj1MlrwbDNXywf1q0002FX8XpgmU.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YHgMdb1V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/kZkHAbHDLwrmpj1MlrwbDNXywf1q0002FX8XpgmU.png" alt="Deploy the worker" width="800" height="497"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It will take a couple of minutes to complete the deployment. You can refresh the page to see the deployment status.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6HtIhLnv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/7XoAWsN3aLMvs78kARDQ39nUB9VzeSGkOOKMiVnU.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6HtIhLnv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/7XoAWsN3aLMvs78kARDQ39nUB9VzeSGkOOKMiVnU.png" alt="Worker deployed - pending" width="800" height="573"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#variables"&gt;2.3 Variables&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Once the deployment is completed, go to your worker settings page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Tz-JFH_S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/cACrxI1237WCW7pwYQgkOyBxfLxfSEglbXozXPul.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Tz-JFH_S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/cACrxI1237WCW7pwYQgkOyBxfLxfSEglbXozXPul.png" alt="changing worker variables" width="800" height="578"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then, &lt;strong&gt;Settings → Variables → Edit Variables&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bDptO2y5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/jCGgbh2zCAfv5SQHJXFsiLPlf7BbaCJBvaNvOCii.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bDptO2y5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/jCGgbh2zCAfv5SQHJXFsiLPlf7BbaCJBvaNvOCii.png" alt="editing variables in the worker" width="800" height="380"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3potqailc45efel99b82.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3potqailc45efel99b82.png" alt="Image description" width="800" height="526"&gt;&lt;/a&gt;&lt;br&gt;
Click Save and Deploy.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gzBSNRs5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/YsP5Q3efzXZcc4rEY87zVXRvoIJsVZ2SbsGnIozz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gzBSNRs5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/YsP5Q3efzXZcc4rEY87zVXRvoIJsVZ2SbsGnIozz.png" alt="saving edited variables in the cloudflare worker" width="800" height="503"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then, scroll down to the &lt;strong&gt;KV Namespace Bindings &lt;/strong&gt;section, and add a new binding.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LtXhqAmI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JUrV87f5EaL2sqOdAOYpiqU9jUFe7jBpuCPOJaDU.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LtXhqAmI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/JUrV87f5EaL2sqOdAOYpiqU9jUFe7jBpuCPOJaDU.png" alt="setting up KV namespace in the cloudflare worker" width="800" height="283"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg1g5jfv6d4iefa9ydjgo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fg1g5jfv6d4iefa9ydjgo.png" alt="Image description" width="800" height="285"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--b4EQ_u85--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/dQreYV6RtR1wOuYVGdiaRRy1dy0sKQzxKWqwZN2E.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--b4EQ_u85--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/dQreYV6RtR1wOuYVGdiaRRy1dy0sKQzxKWqwZN2E.png" alt="cloudflare worker KV setup" width="800" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, our Worker is complete.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Cloudflare Workers Routes
&lt;/h2&gt;

&lt;p&gt;The final step is to route traffic from your domain to the Worker we just created. To do that, we'll use Cloudflare Workers Routes.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#worker-routes"&gt;3.1 Set up Workers Routes&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Go to &lt;strong&gt;Cloudflare Dashboard → Your Domain → Workers Routes&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KweJVmYZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/Ed3dLm5tsuRiE04dRSPpRKyrreh8aMnRYIDL5xBa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KweJVmYZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/Ed3dLm5tsuRiE04dRSPpRKyrreh8aMnRYIDL5xBa.png" alt="cloudflare worker routes" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Add a route with the following values (make sure to replace &lt;code&gt;example.com&lt;/code&gt; with your domain name. Also, &lt;code&gt;/blog&lt;/code&gt; if you are using a different base path). Then, click Save.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8Iz8gsO5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/3pM3FM5VtD0s5qgpYV4kmXQC31H8G8GAbRlbpkDh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8Iz8gsO5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/3pM3FM5VtD0s5qgpYV4kmXQC31H8G8GAbRlbpkDh.png" alt="add route to your DNS" width="800" height="713"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, open your blog URL in your browser. You should see your blog perfectly rendered.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Finalizing &amp;amp; Debugging
&lt;/h2&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#verify"&gt;4.1 Verify Features&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Follow these steps to make sure everything is working.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Make sure &lt;code&gt;/blog&lt;/code&gt; is loading&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Make sure posts with images are loading&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Update one of your posts from the Console. You should see the changes on your blog in a couple of seconds.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open &lt;code&gt;https://{yourdomain.com}/blog/_cache_health&lt;/code&gt;. You should see a "Healthy ✅" message. If not, make sure you have connected the KV store correctly as explain above.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#worker-logs"&gt;4.2 Cloudflare Worker Logs&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;If the blog is not loading at all, if you see an error on your blog page, or if updates are not shown on your blog, use Worker Logs to debug.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--X6MCV8Kq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/eMJrP5X5Tlb5bSkMy44sjPFTWVTMS4nwVeB5iFWA.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--X6MCV8Kq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/eMJrP5X5Tlb5bSkMy44sjPFTWVTMS4nwVeB5iFWA.png" alt="logging for debugging" width="800" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://hyvor.com/blog#clear-cache"&gt;4.3 Clear Cache&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;If you have any issues with styles or fonts in your blog, you can try to clear cache of your blog at &lt;strong&gt;Console → Settings → Danger Zone → Clear Cache. &lt;/strong&gt;Select &lt;strong&gt;All&lt;/strong&gt; as the &lt;strong&gt;Type.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Dw3i0flY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/08UeQNTLYr3XdzAlJvw6lPFZIHPWYhvMG4v3jWRk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Dw3i0flY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://hyvor.com/blog/media/08UeQNTLYr3XdzAlJvw6lPFZIHPWYhvMG4v3jWRk.png" alt="clear cache in Hyvor Blogs Console" width="800" height="524"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The End
&lt;/h2&gt;

&lt;p&gt;I hope this guide helped you set up your blog on a sub-directory using Cloudflare workers. If you need any help, feel free to comment below or contact Hyvor Blogs support. If you found anything confusing, please leave a comment below. It will help us make this guide better for future readers.&lt;/p&gt;

&lt;p&gt;Resources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Worker script: &lt;a href="https://github.com/hyvor/hyvor-blogs-cloudflare-workers"&gt;hyvor/hyvor-blogs-cloudflare-workers&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://workers.cloudflare.com/"&gt;Cloudflare Workers Homepage&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://blogs.hyvor.com/docs"&gt;Hyvor Blogs Docs&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>cloudflare</category>
      <category>subdirectoryhosting</category>
      <category>cloudflareworkers</category>
      <category>hosting</category>
    </item>
    <item>
      <title>Navigating the Challenges of Marketing a Privacy-Focused CMS: My Journey with Hyvor Blogs</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Tue, 16 Jan 2024 15:52:10 +0000</pubDate>
      <link>https://forem.com/_ishiniavindya/navigating-the-challenges-of-marketing-a-privacy-focused-cms-my-journey-with-hyvor-blogs-49ae</link>
      <guid>https://forem.com/_ishiniavindya/navigating-the-challenges-of-marketing-a-privacy-focused-cms-my-journey-with-hyvor-blogs-49ae</guid>
      <description>&lt;p&gt;I'm Ishini Senanayake, the gal wearing multiple hats at HYVOR – UI/UX designer and the one trying to crack the code on our digital marketing strategy. Today, I want to take you behind the scenes of my journey, particularly the hurdles I've been facing in getting the word out about &lt;a href="https://blogs.hyvor.com"&gt;Hyvor Blogs&lt;/a&gt;, a blogging platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  Background
&lt;/h2&gt;

&lt;p&gt;So, here's the deal. At HYVOR, we're all about user privacy. That's non-negotiable. Even when it comes to our marketing strategy, we steer clear of using Google Analytics to track user behavior. Sounds noble, right? Well, it's been both a blessing and a curse.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Analytics Dilemma
&lt;/h2&gt;

&lt;p&gt;The first product that we released was Hyvor Talk (a commenting platform). And all we did was content marketing for Hyvor Talk: no analytics, no ads, nothing else. We were able to make it and I am proud to say that we are doing good with Hyvor Talk.&lt;/p&gt;

&lt;p&gt;Marketing Hyvor Blogs has been like trying to hit a moving target blindfolded.&lt;br&gt;
I decided to go with content marketing as we did for Hyvor Talk makreting. But it seemed a shot in the dark for me. However as a digital marketer I clearly know that Hyvor Blogs' market is way to broad than Hyvor Talk's. But there must be something that works right?&lt;/p&gt;

&lt;p&gt;So I decided to try Google Ads and analytics but we did not break our policy of users privacy: not tracking users and collecting their data. Therefore we decided to go with Splitbee, a less intrusive analytics tool: it is way too behind Google Analytics. But here's the catch – some users disable analytics, and we don't use tracking codes. So, while Splitbee gives us some insights, it's not the full picture.&lt;/p&gt;

&lt;p&gt;And, we put up Hyvor Blogs in Appsumo for a one-time deal. From that, we got so many customers from Appsumo but all of them are one-time (They are only paying us one time per lifetime). They really loved the product. And still they are using Hyvor Blogs. We stopped the Appsumo deal within a very short time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Google Ads Conundrum
&lt;/h2&gt;

&lt;p&gt;Now, let's talk about Google Ads. As I told you earlier we gave it a shot to market HYVOR Blogs, but our commitment to privacy meant we didn't use tracking codes or parameters. Yeah, probably not the smartest move. It's a constant balancing act between marketing effectively and not compromising user privacy. But you know what, it did not go as I expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  Content Marketing Strategies
&lt;/h2&gt;

&lt;p&gt;(Now this is while I was using Google Ads) -&amp;gt; To tackle the keyword competition, I shifted gears to content marketing. Went for easy-to-rank keywords (Low KD), but guess what? Lower search volumes became the new challenge. I also reached out to other business blogs for genuine collaborations, steering clear of any paid partnerships. I'm not a fan of paying someone to say they love us. I really am not a fan of paying somebody's site to say "Product X is good" no matter it is good or not good for users out there.&lt;/p&gt;

&lt;p&gt;So I decided to put a full-stop to Google Ads.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Turning Point
&lt;/h2&gt;

&lt;p&gt;After ditching Google Ads for a while and going all-in on content marketing, we hit a Monthly Recurring Revenue (MRR) of 200 euros. High-fives all around, right? Well, not so fast. We're still struggling to get the right people to notice HYVOR Blogs. But deep down I know Hyvor Blogs is a good blogging platform out there. The thing is it is not being seen by the right people. Only a very few has noticed our product and enjoy our services happily.&lt;/p&gt;

&lt;h2&gt;
  
  
  Seeking Insights from the Community
&lt;/h2&gt;

&lt;p&gt;Recently, I spilled my guts on IndieHackers, celebrating our 200-euro MRR milestone but also sharing our struggles. Surprisingly, the celebration was short-lived as we haven't snagged any paid users since then. I'm scratching my head, wondering why what worked for Hyvor Talk isn't cutting it for Hyvor Blogs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Return to Google Ads
&lt;/h2&gt;

&lt;p&gt;So, after a deep dive into contemplation, I decided to give Google Ads another shot while I am doing content marketing. Two ads – one pointing folks to the HYVOR Blogs homepage, and the other singing the praises of our "WordPress Alternatives" article. Spoiler alert: nada. Zilch. Now, I'm debating whether it's worth burning more money.&lt;/p&gt;

&lt;h2&gt;
  
  
  Moving Forward
&lt;/h2&gt;

&lt;p&gt;Today, I'm hitting the pause button on Google Ads again. As I navigate these murky waters, I'm reaching out to you, for your insights, thoughts, and any experiences you might have had in a similar boat.&lt;/p&gt;

</description>
      <category>marketing</category>
      <category>saas</category>
    </item>
    <item>
      <title>6 Tips to Write SEO Friendly Articles</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Fri, 06 Mar 2020 02:44:01 +0000</pubDate>
      <link>https://forem.com/hyvor/6-tips-to-write-seo-friendly-articles-4081</link>
      <guid>https://forem.com/hyvor/6-tips-to-write-seo-friendly-articles-4081</guid>
      <description>&lt;p&gt;&lt;a href="https://talk.hyvor.com/blog/create-great-blog-content-consistently/"&gt;Content&lt;/a&gt; is the core of a blog. As the content becomes great, the blog becomes great. Posts/articles are the main part of creating great content. In that case, you need to write perfect SEO friendly articles. But, the problems are, most of the bloggers struggle when writing SEO friendly articles as they do not know how to go through it successfully. Are you one of them? If you are nodding your head just right now, do not worry! You will be smiling at the end of this article.&lt;/p&gt;

&lt;p&gt;Firstly, let me explain why your articles should be SEO friendly. If you are a newbie in blogging, you need to earn the &lt;a href="https://www.techopedia.com/definition/5148/blog-audience-blaudience"&gt;audience&lt;/a&gt; -- blog audience. If you want your blog to thrive, you need to make sure you write SEO-friendly content.&lt;/p&gt;

&lt;p&gt;When writing an SEO friendly article, there are several things must be completed. The following tips have centered those essentials and you will find them extremely useful. Now, let's go for tips.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Readability
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---SlYQ0Xc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Readability-1-1030x749-1-1024x745.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---SlYQ0Xc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Readability-1-1030x749-1-1024x745.png" alt="" width="800" height="582"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In an article, &lt;a href="https://talk.hyvor.com/blog/how-transition-words-improve-readability-and-seo/"&gt;readability&lt;/a&gt; is important. If an article has bad readability, readers will not ever try to read it. So, how to improve the readability of an article? Here it is.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Use transition words&lt;/li&gt;
&lt;li&gt; Avoid passive voice&lt;/li&gt;
&lt;li&gt; Have varieties in sentences&lt;/li&gt;
&lt;li&gt; Have a good distribution of subheadings&lt;/li&gt;
&lt;li&gt; Short paragraphs&lt;/li&gt;
&lt;li&gt; Short sentences&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By following the above-mentioned tips, you will have good readability in your article.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Outbound Links
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WuTwepOc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/track-outbound-links.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WuTwepOc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/track-outbound-links.png" alt="" width="800" height="367"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In improving the SEO of an article, outbound links play a huge role. Outbound links are the links chosen externally (from other sites) to mention in your articles linked to several words.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Inbound Links
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NFuM3y-n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/seoptimer-inbound-links-min-1024x536.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NFuM3y-n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/seoptimer-inbound-links-min-1024x536.png" alt="" width="800" height="419"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Inbound links too play a massive role in the process of improving the SEO of an article. These are the links of your own articles in the same blog. When you link a certain word or a phrase to one of your articles published on the same blog itself, that link becomes an inbound link.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Focused Keyphrase
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HrFYE1fn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200220-010614.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HrFYE1fn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200220-010614.jpg" alt="" width="513" height="201"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For an SEO friendly article, there must be a focused keyphrase. Remember, setting a focus keyphrase does not have to be done in a careless manner. As an example let's assume that you set "SEO friendly articles" as the keyphrase for this article's title. After setting that, you ought to have that focused keyphrase in the title, subheadings, meta description, slug, and in introduction text. Moreover, you have to mention the key phrase several times in the body of the article. Remember, to not to use a previously used keyphrase.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Title Width
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ClrI-32o--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/title-tag-seo-facebook.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ClrI-32o--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/title-tag-seo-facebook.jpg" alt="" width="800" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Your SEO title will be the first thing potential visitors of your site see on the search results pages. And, if your title is not good enough, it'll also be the only thing they see. So, the purpose of your SEO title is to make people click on the snippet, come to your website and read your post or buy your product. To increase the odds of that happening, you want to make sure your title is compelling: enticing, not too short and not too long.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Meta Description
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RhR-qIeJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/meta-description-tag.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RhR-qIeJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/meta-description-tag.gif" alt="" width="624" height="189"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates. Usually, this can be any length, but Google generally truncates snippets to ~155--160 characters. So, I recommend you to write meta descriptions between 50-160 characters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Well, I hope you have a clear idea of how to write SEO friendly articles. If you still have any problems, feel free to comment below, and I will help you ASAP. Apart from given tips, if you have any other tips, do not be shy to share them with others through the comments section. Happy Blogging!✌&lt;/p&gt;

</description>
      <category>seo</category>
      <category>articlewriting</category>
      <category>tips</category>
      <category>beginners</category>
    </item>
    <item>
      <title>6 Awesome Tips to Encourage Reader Interaction of a Blog</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Wed, 26 Feb 2020 16:54:42 +0000</pubDate>
      <link>https://forem.com/hyvor/6-awesome-tips-to-encourage-reader-interaction-of-a-blog-426c</link>
      <guid>https://forem.com/hyvor/6-awesome-tips-to-encourage-reader-interaction-of-a-blog-426c</guid>
      <description>&lt;p&gt;Today, in most of the blogs, bloggers build up &lt;a href="https://talk.hyvor.com/blog/create-great-blog-content-consistently/" rel="noopener noreferrer"&gt;quality content&lt;/a&gt;. But, they worry about not having much reader interaction. They say, that they do not have a good idea of how to encourage reader interaction of a blog. Let me tell you something. Strategies for encouraging reader interaction are not that hard and mysterious.&lt;/p&gt;

&lt;p&gt;Imagine this scenario, readers start flocking into your blog, reading each and every article, leaving comments after comment, and they do not want to go away. Want to make it so real instead of imagination? Let's get started!&lt;/p&gt;

&lt;h2&gt;
  
  
  Encourage Reader Interaction -- Tips
&lt;/h2&gt;

&lt;p&gt;As you know, for a blogger, the reader is the treasure. Moreover, more reader interaction could be defined as the &lt;a href="https://talk.hyvor.com/blog/10-tips-for-beginner-bloggers/" rel="noopener noreferrer"&gt;success of a blog&lt;/a&gt;. So, how should you encourage reader interaction?&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Respect Your Reader
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://unsplash.com/photos/saJkxOZXPsk" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2Fphoto-1523934882174-f3ebf13fa331.jpeg-1.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Respect is very important as everyone loves to be respected. So do readers. Firstly, when you write articles or blog posts, your way of writing matters. It should be a respectful way.&lt;/p&gt;

&lt;p&gt;Secondly, do not disturb your reader or annoy them with ads while reading. Readers really hate that. When they are being disturbed, they go away from your blog. Yeah, I know showing ads is somehow important for financial matters. But, there must be readers for your blogs to show ads. Isn't it? So, minimize the popping ads while readers are reading in your blog. Trust me, you will encourage reader interaction through this strategy like nothing else.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Consistency
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://unsplash.com/photos/QL0FAxaq2z0" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2Fphoto-1516383740770-fbcc5ccbece0.jpeg-2.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To make your readers feel cheered and to maintain consistency in your blog, several strategies exist. Firstly, you need to make them feel expected in your next article. This is called "blogging on a consistent schedule".&lt;/p&gt;

&lt;p&gt;The second way of maintaining consistency is all over to you. But, let me give you some valuable tips. Write your article in a manner like you and the reader having a conversation. Do not let the reader feel that you are from a different era, or you are someone else. This helps to build up the trust between you and your reader. That encourages reader interaction with your blog.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Always Consider Readers' Purposes
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://unsplash.com/photos/Ce3XLxac0f4" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2Fphoto-1529288619019-492bd08e0ab9.jpeg-1.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When you start writing, think about how much your reader will expect from you or what are their intention is. Always try to write what they search for or the problems they suffer: give them solutions.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Ask for Feedback
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://unsplash.com/photos/V5vqWC9gyEU" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2Fphoto-1577563908411-5077b6dc7624.jpeg-1.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://modernmrsdarcy.com/" rel="noopener noreferrer"&gt;Anne of Modern Mrs. Darcy&lt;/a&gt; does a great job of asking her readers for feedback at the end of each post. She has a great reader interaction in her posts with comments, feedback.&lt;/p&gt;

&lt;p&gt;She uses things like "What do you think about this?  How do you handle that situation?  Have you ever done this?" So, I recommend you to use phrases like Anne of Modern Mrs. Darcy uses. Instead of her phrases, use the following.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Have you ever faced this situation?&lt;/li&gt;
&lt;li&gt;  How do you feel about this?&lt;/li&gt;
&lt;li&gt;  Do you have any ideas?&lt;/li&gt;
&lt;li&gt;  What are your thoughts?&lt;/li&gt;
&lt;li&gt;  Feel free to share your ideas with others&lt;/li&gt;
&lt;li&gt;  Do you mind sharing your thoughts? etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Build an Audience with Comments
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2FScreenshot_20200219-105617-778x1024.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F02%2FScreenshot_20200219-105617-778x1024.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is very important. Comments are the pitch that readers and bloggers build their relationship with each other. Blogs without comments are totally useless. There is no excuse for not creating an environment for comments. Then, you will have a big audience for your blog. I highly recommend you to create a good environment for comments.&lt;/p&gt;

&lt;p&gt;How do you create a good environment for comments? In this case, you have to choose a good commenting system. Readers will love to interact through it. Make them busy interacting with your blog through comments. As it grows, the comment pitch starts automatically encouraging new readers to interact with your blog. Do not forget to be kindly, politely responsive to the readers' comments. Choosing a user-friendly commenting system such as &lt;a href="https://talk.hyvor.com/" rel="noopener noreferrer"&gt;Hyvor Talk&lt;/a&gt; matters too.😉&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Build an Audience with Email Newsletter
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1557200134-90327ee9fafa%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D1000%26q%3D80" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1557200134-90327ee9fafa%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D1000%26q%3D80" alt="Email Newsletter"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Imagine that the readers who used to do reading in your blog, now do not come often or they do not come at all. There might be different reasons such as they are not informed about new articles and new things have come up in your blog or they are busy not having time to check up your blog. That is why the email newsletter is for. Use this technique to attract readers with emails regarding recent updates. These emails make readers rush to your blog for reading.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Going through the above-mentioned tips, you will experience long-lasting results in reader interaction. Enjoyed reading this article? Feel free to leave a comment if you have anything to say or share. Happy Blogging!✌&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://talk.hyvor.com/blog/" rel="noopener noreferrer"&gt;Hyvor Talk Blog&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>blogging</category>
      <category>beginners</category>
      <category>readerinteraction</category>
    </item>
    <item>
      <title>How to Write a Perfect Article for a Blog</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Mon, 24 Feb 2020 16:04:22 +0000</pubDate>
      <link>https://forem.com/hyvor/how-to-write-a-perfect-article-for-a-blog-3npe</link>
      <guid>https://forem.com/hyvor/how-to-write-a-perfect-article-for-a-blog-3npe</guid>
      <description>&lt;p&gt;Articles/posts are the heart of a blog. Quality and perfect articles have the power of giving success to a blog. When it comes to thinking that how you should improve your blog, the first and the very thing is the content. &lt;a href="https://talk.hyvor.com/blog/create-great-blog-content-consistently/"&gt;The content &lt;/a&gt;is the most important part of a blog. In addition, remember that it is what makes your audience bad or good. Most of the bloggers these days struggle with the problem "how to write a perfect article"? Hey, do not worry anymore. I am here to help you to write perfect articles. Yay! Let's dive in!&lt;/p&gt;

&lt;p&gt;PRO TIP: If you are a newbie, take a look at Hyvor Talk Blog's other articles written for beginner bloggers.&lt;/p&gt;

&lt;p&gt;In this case, you have to go step by step skipping nothing. &lt;a href="https://m.wikihow.com/Create-a-Good-Article"&gt;Writing a perfect article&lt;/a&gt; is not that tough than bloggers think. It needs good knowledge, quality, and reliable information, and lastly, a good focus.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tips to Write a Perfect Article
&lt;/h2&gt;

&lt;p&gt;I hereby give you a quintuplet of tips to write a perfect article.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PRO TIP&lt;/strong&gt;: Have good knowledge about what you are writing.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Catch a Great Title
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rbi_sIQj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1476242906366-d8eb64c2f661.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rbi_sIQj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1476242906366-d8eb64c2f661.jpeg.jpg" alt="" width="600" height="298"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When a reader comes to read your article, the title is the very first thing that he/she sees as soon as they come. Not only that but also when they are searching for reading that your articles resonate their need too. When they see a great, eye-catching title, they choose your articles instead of others. So, remind the first impression here is useful.&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OTi2DMCz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://s.w.org/images/core/emoji/12.0.0-1/svg/1f609.svg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OTi2DMCz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://s.w.org/images/core/emoji/12.0.0-1/svg/1f609.svg" alt="😉" width="36" height="36"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Five times as many people read the headline as read the body copy. When you have written your headline, you have spent eighty cents out of your dollar.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://en.m.wikipedia.org/wiki/David_Ogilvy_(businessman)"&gt;David Ogilvy&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Consider the following titles.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pZWiv430--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/title-an-essay-good-vs-bad-1024x351.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pZWiv430--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/title-an-essay-good-vs-bad-1024x351.png" alt="" width="800" height="274"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://essaypro.com/"&gt;EssayPro&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A great title/headline must be,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Attention-grabbing&lt;/strong&gt; -- Use catchy words to grab the attention of the readers. Instead of writing in a boring way, try to reader convincing words.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Coherent&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Written in the active voice&lt;/strong&gt; -- Use active voice instead of passive voice. Because titles are written in an active voice always are attention-grabbing.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Credible&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Concise&lt;/strong&gt; -- Make the titles short, no longer than 10 words.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Accurate&lt;/strong&gt; -- Use accurate words and grammar.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Numbered&lt;/strong&gt; -- Sometimes it can be a good idea to offer a certain number of tips in your title like *Five Summer Fashion Tips That Will Turn Heads. *This shows the reader that they can expect five tips. It encourages the reader to read the article because they know that in just a few steps they will be able to overhaul their summer wardrobes&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Motivative&lt;/strong&gt; -- Show how the reader will be able to change their life for the better by reading your article. Instead of merely saying they can learn how to eat healthier, write that they can eat their way to better health&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2. Write Clearly -- Short and Sweet
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cXGxReIr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1519337265831-281ec6cc8514.jpeg-1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cXGxReIr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1519337265831-281ec6cc8514.jpeg-1.jpg" alt="" width="600" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now do not get this wrong as to write a tiny piece of article. This means to write an article clearly. To write clearly, shorties sounds perfect. When you write about something short and sweet, I mean make your writing divided into many subheadings, paragraphs with 50 or 40 words, etc. That makes your readers find your article more readable. Remember, readability matters a lot. You can use &lt;a href="https://talk.hyvor.com/blog/how-transition-words-improve-readability-and-seo/"&gt;transition words to improve readability&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Use Evidence to Make it Reliable
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xIgBw202--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1522198734915-76c764a8454d.jpeg-1024x683.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xIgBw202--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1522198734915-76c764a8454d.jpeg-1024x683.jpg" alt="" width="800" height="534"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When you are writing, try to present proofs to your reader to make the information is given in your article more reliable. Give the links to the resources you went through in case of it.&lt;/p&gt;

&lt;p&gt;As an example: Assume that you have to mention in your article that there are lots of webpages exits in the WWW. But, instead of saying like that, try to give the exact number of webpages that exist in WWW. For that purpose, refer to researches done about that and mention them in your article.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Write in a Motivative and Friendly way
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--C5Qt1KOu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1522202176988-66273c2fd55f.jpeg-1.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--C5Qt1KOu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1522202176988-66273c2fd55f.jpeg-1.jpg" alt="" width="600" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Write in a motivative way. That motivates your readers to go further in your artocles and find exact the solutions, ideas given by you. When they feel motivated just by your writing, they start engaging more or read more in your blog. I recommend you to write in a friendly way also. It makes your readers that your have written just for them. That makes them feel comfortable too.&lt;/p&gt;

&lt;p&gt;Try the following phrases.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  I am going to tell you....&lt;/li&gt;
&lt;li&gt;  Yay! Let's dive in&lt;/li&gt;
&lt;li&gt;  Wanna/ Want to know more?&lt;/li&gt;
&lt;li&gt;  Don't you/ Do you?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And theres more than above mentioned phrases. You will get to know them with the experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Write a Summary / Conclusion
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mp9RX2eh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1486312338219-ce68d2c6f44d.jpeg-1024x681.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mp9RX2eh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/01/photo-1486312338219-ce68d2c6f44d.jpeg-1024x681.jpg" alt="writing" width="800" height="532"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At the end of your post or your articles, try to finish with a summary or a conclusion. It helps the readers to recall everything that they read in your articles briefly.&lt;/p&gt;




&lt;h3&gt;
  
  
  The Bright Side of Summaries...
&lt;/h3&gt;

&lt;p&gt;If writing an article pitch makes you fret, bear in mind the benefits. Summaries enable you to submit a paragraph or two on your idea instead of wasting time writing an entire article that gets put on the back burner because it was not what the publication had in mind.&lt;/p&gt;

&lt;p&gt;Summaries are a way to show off your writing skills while giving your editor a better idea of what you want to write. Added to this, summaries also benefit* you *as the writer. They give you a chance to formulate the crux of what you will tackle in the article, which creates a much clearer outline. Should your idea be accepted, a pristine summary will make writing your article much easier. Remember, planning is half the work done!&lt;/p&gt;

&lt;p&gt;Extracted from &lt;a href="https://www.freelancewriting.com/query-letters/write-the-perfect-article-pitch/"&gt;Freelancer Writing&lt;/a&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;I hope you get a clear idea of how to write a perfect article for blogs. If you have any questions, suggestions, and ideas, feel free to comment below.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published on Hyvor Talk Blog.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>blog</category>
      <category>beginners</category>
      <category>articles</category>
      <category>writing</category>
    </item>
    <item>
      <title>How to Choose a Potential Blog Niche</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Tue, 18 Feb 2020 11:05:58 +0000</pubDate>
      <link>https://forem.com/hyvor/how-to-choose-a-potential-blog-niche-57ff</link>
      <guid>https://forem.com/hyvor/how-to-choose-a-potential-blog-niche-57ff</guid>
      <description>&lt;p&gt;The success of a blog relies on the niche. No doubt, no arguments!😊 However, most of the &lt;a href="https://talk.hyvor.com/blog/10-tips-for-beginner-bloggers/"&gt;beginner bloggers&lt;/a&gt;/bloggers suffer from the problem of choosing a potential blog niche. Are you one of those who are struggling? If you are nodding your head, just know that you are not alone. I am here to help you from A to Z.&lt;/p&gt;

&lt;p&gt;I am writing this article specially for newbies in blogging. But, if you have get stuck somewhere with a pain in the neck of blog niches, say "Yay!" Because you are in the best place right now.&lt;/p&gt;

&lt;p&gt;Firstly, let's see what actually a blog niche is.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a Blog Niche?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EnV5lGJa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1522204523234-8729aa6e3d5f.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EnV5lGJa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1522204523234-8729aa6e3d5f.jpeg.jpg" alt="" width="600" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the case of assigning a definition for a blog niche, a simple definition would be safe and sound.😉&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A blog niche is a &lt;em&gt;specific topic&lt;/em&gt; you'll write (or create other types of content) about on your blog&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://bloggingwizard.com/choose-perfect-niche-for-your-blog/"&gt;Adam Cornell -- bloggingwizard&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A blog niche is the backbone of your blog. If you fail in choosing a potential blog niche, that is where the disaster begins. So, what you should do for a perfect blog niche?&lt;/p&gt;

&lt;p&gt;When deciding on a niche, you need to think about one very important thing:&lt;/p&gt;

&lt;p&gt;If you're blogging for profit, you don't want to choose a topic that gets tons of traffic but gets no money.&lt;/p&gt;

&lt;p&gt;Topic like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Free SMS&lt;/li&gt;
&lt;li&gt;  Free wallpaper&lt;/li&gt;
&lt;li&gt;  WhatsApp tips&lt;/li&gt;
&lt;li&gt;  Free movie downloads&lt;/li&gt;
&lt;li&gt;  etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These niches will get you a lot of traffic but probably won't get you very much money. At the same time, you don't want to pick a niche that is too tough for you to write about.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What's a good blog niche?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Potential and a good niche is one that is related to what you like, has good traffic, and also has a monetary value. More than that, your niche should have a future.&lt;/p&gt;

&lt;p&gt;Generally, when choosing a potential niche for your blog, save these keys for you.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Your interests.&lt;/li&gt;
&lt;li&gt; Business value (CPC).&lt;/li&gt;
&lt;li&gt; Monthly/yearly searches&lt;/li&gt;
&lt;li&gt; Trend &amp;amp; future of the topic&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Firstly, before choosing a blog niche, you have to have the passion, motivation. If you choose a niche that you are not interested in, it will be a disaster. Moreover, you have to have good knowledge of the blog niche you choose. Because, people these days look for reliable facts, information, and news. You also have to consider the business value, a number of searches per month or per year, and the future of the niche. I will explain more about these tips later in the article.&lt;/p&gt;

&lt;h2&gt;
  
  
  Let's do this!
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xcL2-cpx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1468971050039-be99497410af.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xcL2-cpx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1468971050039-be99497410af.jpeg.jpg" alt="" width="600" height="337"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, I hope the previous paragraph gave you a simple idea of choosing a blog niche.&lt;/p&gt;

&lt;p&gt;Choosing a potential blog niche requires more work though starting a blog is just a piece of cake. Don't spill the milk as the rug is far away! *I'm just kidding! *I know you can do this! Now let me explain to you further about choosing a potential blog niche. Are you ready? Let's dive in.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Find where your passion is
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iuSAirtb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1520970014086-2208d157c9e2.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iuSAirtb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1520970014086-2208d157c9e2.jpeg.jpg" alt="" width="600" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;First of all, list down some blog topics that you have in your mind. If you do not have already any topic, go to a quiet place and start a discussion with yourself (your mind); you will have ideas like water flows from a stream.&lt;/p&gt;

&lt;p&gt;After that, take a look at the list of blog topics (niches) you have chosen. Ask the following questions from yourselves regarding each and every niche you have listed.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Do I have a passion to blog about this topic?&lt;/li&gt;
&lt;li&gt;  Do I have good knowledge about this topic or am I willing to learn more about this topic?&lt;/li&gt;
&lt;li&gt;  Am I ready to work hard to achieve blog goals with this niche?&lt;/li&gt;
&lt;li&gt;  Do people interested in this topic?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After that, consider what topic you have given 3 yeses and with what topic you feel more comfortable. Then, not down brainstormed topics/niches for the next steps. Moreover, plug brainstormed niches into Google Trends as a start: just to get an idea of the users' behavior with those brainstormed niches.&lt;/p&gt;

&lt;p&gt;Congratulations! You successfully finished the first step in choosing a potential blog niche.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Do a little keyword research
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JJWO_k0Z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1518734549841-b417d28c22aa.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JJWO_k0Z--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1518734549841-b417d28c22aa.jpeg.jpg" alt="" width="600" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Well, now you have a rough idea of your niche's popularity and momentum from &lt;a href="https://trends.google.com/trends/"&gt;Google Trends&lt;/a&gt;. However, as Google Trends uses &lt;em&gt;relative&lt;/em&gt; numbers, it doesn't tell you exactly how many people are searching for terms in your niche right now.&lt;/p&gt;

&lt;p&gt;That is why you need to go a little further with keyword research. This is what you need to do.&lt;/p&gt;

&lt;p&gt;First, collect some keyword ideas regarding each brainstormed niches. For example, let's imagine that you have chosen healthy diets. According to that niche idea, you can have keywords like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Healthy diet&lt;/li&gt;
&lt;li&gt;  Healthy diet recipies, etc&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then, take those ideas and plug them into a keyword research tool such as &lt;a href="https://moz.com/explorer"&gt;MOZ Keyword Explorer&lt;/a&gt;. When you do this, those keyword tools suggest other keyword ideas. The purpose of doing this little keyword research is this. If you do not have a good number of searches per month, there is no worth of blogging about such a niche, you will definitely find it hard with blaudience and SEO.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Make sure it is potential and profitable
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--k0YtCxvZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1535231540604-72e8fbaf8cdb.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k0YtCxvZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1535231540604-72e8fbaf8cdb.jpeg.jpg" alt="" width="600" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you are planning to earn money from blogging, you need to consider both potential and profitable niches. However, if you do not expect to earn money, looking for a potential blog will be enough.&lt;/p&gt;

&lt;p&gt;I will tell you about both. However, choosing these two factors is up to your choice.&lt;/p&gt;

&lt;p&gt;While some blogs do manage to succeed while focusing on ephemeral trends, it takes time to build a popular blog. Ask yourself "Is this niche likely to be around for years to come?". If the answer is yes, your chosen niche is potential. A potential blog niche has a quality of development step by step.&lt;/p&gt;

&lt;p&gt;Now, it's time to figure out whether you can actually make money from this thing.&lt;/p&gt;

&lt;p&gt;If you're creative, it's possible to make at least &lt;em&gt;some&lt;/em&gt; money from pretty much any niche, as long as you have an audience.&lt;/p&gt;

&lt;p&gt;Some blog niches are always going to make more money than others.&lt;/p&gt;

&lt;p&gt;So how do you figure out if, &lt;em&gt;and how&lt;/em&gt;, you can make money with your niche?&lt;/p&gt;

&lt;p&gt;You guessed it -- more research!&lt;/p&gt;

&lt;p&gt;To make sure that your chosen niche is profitable, your first stop should always be to see how other blogs in your niche are making money.&lt;/p&gt;

&lt;p&gt;Go open a few tabs with popular blogs in your niche.&lt;/p&gt;

&lt;p&gt;Then, go through them and see if they:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Display banner ads or other advertisements on their site&lt;/li&gt;
&lt;li&gt;  Write about certain products with links to where people can buy&lt;/li&gt;
&lt;li&gt;  Sell their own information product&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If they do, you can search more about those techniques and collect and try them for your success. PS: Avoid Copying, make those techniques yours.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;I hope you got a clear idea about how to choose a potential niche. But, remember, your creativity, your decisions really matter no matter what. So, just be awarded if you are a beginner. Following guides and reading more about choosing a niche is better. If you are stuck still, do not worry, I am here to help. Just leave a comment below. Enjoyed reading? If you have any questions, suggestions, and ideas, please feel free to comment below. Happy Blogging!✌&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://talk.hyvor.com/blog/"&gt;Hyvor Talk Blog&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>niche</category>
      <category>beginners</category>
      <category>blogging</category>
    </item>
    <item>
      <title>How Transition Words Improve Readability and SEO</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Mon, 10 Feb 2020 16:02:51 +0000</pubDate>
      <link>https://forem.com/hyvor/how-transition-words-improve-readability-and-seo-1ka8</link>
      <guid>https://forem.com/hyvor/how-transition-words-improve-readability-and-seo-1ka8</guid>
      <description>&lt;p&gt;Can search engines actually filter articles that are easy and natural to read from bad ones? However, the search engines don't have a feature to rank articles based on their readability. But how? This is how it goes!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;How does readability affect SEO?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hQNw654B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1562577309-2592ab84b1bc.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hQNw654B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1562577309-2592ab84b1bc.jpeg.jpg" alt="" width="600" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The common direct things that search engines can rank your article for are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Keyword density&lt;/li&gt;
&lt;li&gt;  Keyword decorations&lt;/li&gt;
&lt;li&gt;  Meta tags&lt;/li&gt;
&lt;li&gt;  Image alt tags&lt;/li&gt;
&lt;li&gt;  Grammar of your article&lt;/li&gt;
&lt;li&gt;  Page title&lt;/li&gt;
&lt;li&gt;  URL&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In this case, writers consider most about the above mentioned fact instead of how indirectly readability improve SEO. &lt;strong&gt;User behaviour, Typography,Content readability, and Style of Writing &lt;/strong&gt;are the factors that search engines use to rank articles indirectly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Content Readability&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Content readability of any of your articles represents how easy can your visitors understand your written content&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;The important thing that you should always keep in mind when writing any of your content is that you are making it primarily for your visitors. As important as it is to rank good for particular keywords on search engines, if your articles can't be understood with ease by your audience, they won't have the informational value your visitors deserve. When your articles can be easily understood by readers, they would often come to read and spend a lot of time reading articles. It is how user behavior fluctuates. According to user behavior, these are the factors that search engines consider in improving SEO.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Time on page&lt;/li&gt;
&lt;li&gt;  Exit rate&lt;/li&gt;
&lt;li&gt;  Bounce rate&lt;/li&gt;
&lt;li&gt;  Social sharing rate&lt;/li&gt;
&lt;li&gt;  Conversion rate&lt;/li&gt;
&lt;li&gt;  Total number of sessions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can see those things clearly lined up in Google anaylitics.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--adBE3ncW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1460925895917-afdab827c52f.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--adBE3ncW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1460925895917-afdab827c52f.jpeg.jpg" alt="" width="600" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In typography, using charm fonts, writing short sentences, writing short paragraphs, avoiding passive voice improves readability too. Conversational writing helps to improve readability and SEO. Readers would love when the article is written in a conversational way. Typography and style of writing cause good user behavior too.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;What are Transition Words?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://en.m.wikipedia.org/wiki/Transition_(linguistics)"&gt;Transition words&lt;/a&gt; are words or phrases used to link ideas together. They help the reader to see more than one point is important and both should be taken into consideration. They also indicate different ideas in the same paragraph or sentence are related.&lt;/p&gt;

&lt;p&gt;Let's get into the different types of transitions to make the concept clearer. This won't give you the full list of transition words but will make it possible to easily recognize them. There are different types of transition words that you can use such as,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Additive Transitions&lt;/strong&gt;: Use to show addition, introduction, similarity to other ideas.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Adversative Transitions&lt;/strong&gt;: Use to signal conflict, contradiction concession, dismissal.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Causal Transitions&lt;/strong&gt;: Use to signal cause/effect and reason/result, etc.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Sequential Transitions&lt;/strong&gt;: Use these transitions to signal a chronological or logical sequence.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7PWGtDeo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215536-815x1024.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7PWGtDeo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215536-815x1024.jpg" alt="Additive Transitions" width="800" height="1005"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LuIWuzmP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215553-1024x934.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LuIWuzmP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215553-1024x934.jpg" alt="Adversative Transitions" width="800" height="730"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PmJNjmr9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215609-981x1024.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PmJNjmr9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215609-981x1024.jpg" alt="Casual Transitions" width="800" height="835"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HQILu21a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215624-912x1024.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HQILu21a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-215624-912x1024.jpg" alt="Sequential Transitions" width="800" height="898"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Word list extracted from &lt;a href="https://msu.edu/~jdowell/135/transw.html"&gt;msu.edu&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;How Transition Words Improve Readability&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--SyvQHL1S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1451226428352-cf66bf8a0317.jpeg-1024x680.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--SyvQHL1S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/photo-1451226428352-cf66bf8a0317.jpeg-1024x680.jpg" alt="" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Readers' ease is everything. When readers feel comfortable and interested in reading articles, they prefer engaging more in readable articles. When using transition words, the exact idea that you are trying to say is clearly could be emphasized: so you ought to do nothing more with the reader's mentality and understanding, transition words already there! Transitions make your writing well structured. It creates a good readable environment for the readers. And therefore they contribute to SEO in the long run, by attracting more traffic and visitors to your website. Moreover, using transition words makes your articles clearer and more logical. Also, it contributes to making the meaning more intuitive and the text more engaging.&lt;/p&gt;

&lt;p&gt;Now let's see an example with transition words and without transition words.&lt;br&gt;
&lt;strong&gt;Without transitions&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tGXFIQg3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Text-A-Transition-Words-1024x345.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tGXFIQg3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Text-A-Transition-Words-1024x345.png" alt="Without transitions" width="800" height="270"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The above is not easy to understand. Now, check the next one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;With transitions&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--D_h-XX51--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Text-B-Transition-Words-1024x431.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--D_h-XX51--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Text-B-Transition-Words-1024x431.png" alt="With transitions" width="800" height="337"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://yoast.com/academy/seo-copywriting-training/transition-words/"&gt;Yoast suggests&lt;/a&gt; that transition words highlight the relationship between phrases, sentences or even paragraphs. Transition words make it easier for your readers to understand how thoughts and ideas are connected. They also prepare your readers for what's coming. You may have or you can experience transition optimizing in WordPress. WordPress convince WordPress bloggers to use transition words in writing with the help of Yoast.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--94PvBqlW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-224116-1024x656.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--94PvBqlW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://talk.hyvor.com/blog/wp-content/uploads/2020/02/Screenshot_20200209-224116-1024x656.jpg" alt="Yoast" width="800" height="513"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Improving readability and SEO is not that hard if you learn and apply them in writing articles. Do not waste time searching for transition words, just use the list given in&lt;a href="https://talk.hyvor.com/blog/?p=361"&gt; this article&lt;/a&gt;. If you have any questions, suggestions please feel free to comment below. Happy Writing!✌&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published on &lt;a href="https://talk.hyvor.com/blog/how-transition-words-improve-readability-and-seo/"&gt;Hyvor Talk Blog&lt;/a&gt;. Hyvor Talk is a commenting platform for blogs. We also help our users to grow by sharing tips and blog posts.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>blogging</category>
      <category>seo</category>
      <category>beginners</category>
      <category>readability</category>
    </item>
    <item>
      <title>10 Tips for Beginner Bloggers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Fri, 31 Jan 2020 09:32:18 +0000</pubDate>
      <link>https://forem.com/hyvor/10-tips-for-beginner-bloggers-2bhc</link>
      <guid>https://forem.com/hyvor/10-tips-for-beginner-bloggers-2bhc</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1568584263125-bf8f0a77d51c.jpeg-1024x683.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1568584263125-bf8f0a77d51c.jpeg-1024x683.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Blogging has become a major trend and it is highly beneficial. According to &lt;a href="https://www.lifewire.com/susan-gunelius-3476104" rel="noopener noreferrer"&gt;Susan Gunelius&lt;/a&gt; at &lt;a href="https://www.lifewire.com/top-reasons-people-blog-3476741" rel="noopener noreferrer"&gt;Lifewire&lt;/a&gt;, there are many reasons why people prefer blogging. Such as financial purposes, hobbies, educational purposes, etc. Consequently, this situation has caused many people to drag towards blogging from anywhere. Starting a blog is not as easy as it seems unless you follow the right tips at the beginning. It is bloggers' responsibility not to mess at the beginning. This article wraps 10 Tips for Beginner Bloggers. This will help you to start your own blog more confidently.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;1. Choose a perfect niche&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1504805572947-34fad45aed93.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1504805572947-34fad45aed93.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Having a broad idea about your upcoming blog is important. The success of your blog depends on this matter as it is all about how people engage with your blog. While some bloggers simply write about whatever pops into their minds, that's &lt;em&gt;not&lt;/em&gt; a great strategy for long-term success. As a beginner blogger, you have to think more and more about your blog niche.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;&lt;em&gt;How to choose a perfect niche&lt;/em&gt;&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;What is a niche ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A blog niche is a &lt;em&gt;specific topic&lt;/em&gt; you'll write (or create other types of content) about on your blog&lt;/p&gt;

&lt;p&gt;A few of the &lt;a href="https://www.thebalancesmb.com/best-selling-niches-to-make-money-online-4109702" rel="noopener noreferrer"&gt;popular niches&lt;/a&gt; are,&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Food&lt;/li&gt;
&lt;li&gt;  Fashion&lt;/li&gt;
&lt;li&gt;  Personal Finance&lt;/li&gt;
&lt;li&gt;  Lifestyle&lt;/li&gt;
&lt;li&gt;  Programming&lt;/li&gt;
&lt;li&gt;  Health&lt;/li&gt;
&lt;li&gt;  Dating and relationships&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On many websites, many writers explain the process of choosing a perfect niche in different ways.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;According to &lt;a href="https://www.entrepreneur.com/article/310335" rel="noopener noreferrer"&gt;Entrepreneur&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;1. Pick a topic you enjoy talking about&lt;br&gt;
2. Do market research&lt;br&gt;
3. Pick a smaller niche&lt;br&gt;
4. Make sure it is profitable/perfect&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Whatever idea you have, you need to have a good plan on it. Imagine you decided to start a blog on programming. You ought to think about it more and more. You ought to research the current status of other existing blogs too. In short, try doing something new for people. It makes them rush towards your blog and you will experience success.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt;: Try to make your blog social.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;2. Identify your precious blog audience-Blaudience&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1558151748-f2621b5e52f0.jpeg-1024x683.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1558151748-f2621b5e52f0.jpeg-1024x683.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;What does &lt;em&gt;Blog Audience (Blaudience)&lt;/em&gt; mean?&lt;/strong&gt;
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;A blog audience is the group of people who visits and returns to a blogger's site. Developing a true audience- as opposed to gaining unique visits through search engine optimization- is a tall order for bloggers as Internet users tend to have variable tastes.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.techopedia.com/definition/5148/blog-audience-blaudience" rel="noopener noreferrer"&gt;techopedia&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The audience of your blog is gold. Try jotting down the appropriate kinds of audiences according to the main theme of your blog. However, targetting the audience is something to talk about. It requires a good knowledge of audience behavior. In contrast, that does not mean without good knowledge about audience behavior fails you. Moreover, knowing how to interact with audiences is pretty safe and sound. That will also help you in promoting your blogs too.&lt;/p&gt;

&lt;p&gt;It is important too to decide how you may present content to your &lt;a href="https://thenextweb.com/socialmedia/2011/09/19/these-tips-will-help-define-your-blogs-target-audience/" rel="noopener noreferrer"&gt;blog audience&lt;/a&gt;. This is just a simple method used by bloggers and there you go!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  How old are they?&lt;/li&gt;
&lt;li&gt;  Where do they live?&lt;/li&gt;
&lt;li&gt;  Are they primarily male or female?&lt;/li&gt;
&lt;li&gt;  How educated is your audience?&lt;/li&gt;
&lt;li&gt;  What does your audience do for a living?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Asking yourself these questions will help give you a better understanding of how to approach certain subjects with your readers. In many cases, the category of your blog will affect the demographics of your audience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt;: Do attractive things to reach your audience goals.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;3. Create an eye-catching blog&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522198734915-76c764a8454d.jpeg-1024x683.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522198734915-76c764a8454d.jpeg-1024x683.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An eye-catching blog is something that attracts and keeps a good audience silently. Psychologists say, mostly, people prefer beautiful, charm, eye-catching websites and blogs. You need to create your blog to make the audience's eyes not to go away.&lt;/p&gt;

&lt;p&gt;Finding and developing great content to have a successful creative blog and website &lt;a href="https://www.creativelive.com/courses/write-successful-creative-blog-april-bowles?utm_source=creativeLIVE&amp;amp;utm_medium=blog&amp;amp;utm_campaign=craft-maker_ways-to-stay-inspired-build-a-successful-creative-blog&amp;amp;utm_content=text_link" rel="noopener noreferrer"&gt;will bring in traffic&lt;/a&gt;, increase your search engine rankings, and make you money not to mention engage your readers so they keep coming back. But there are two areas that &lt;a href="http://blog.hubspot.com/marketing/find-inspiration-ideas-internet" rel="noopener noreferrer"&gt;all bloggers struggle with&lt;/a&gt;, even the pros:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Finding something to write about&lt;/li&gt;
&lt;li&gt; Having the motivation to write&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;And... sometimes it's both.&lt;/p&gt;

&lt;p&gt;Regardless of your blogging experience, it's important that you set yourself up for success by choosing content that is fun to research, write about, and explore. Here are a few ways to feed your inspiration so that blogging continues to be enjoyable, rewarding and effective&lt;/p&gt;

&lt;p&gt;A creative blog depends totally on your creativity and your own decisions. So, it is up to you.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;4. Have a great content&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522202801620-eb6f71f5bf05.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522202801620-eb6f71f5bf05.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Super-duper content is the core of your blog. The content of your new blog will be the bait that attracts your readers. Without great content, even the most well-designed, tightly-structured blogs will ultimately fail. There are two blocks you need to worry about, pre-launch and post-launch contents.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pre-launch content
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  Static pages: such as "About," "Contact," etc&lt;/li&gt;
&lt;li&gt;  Sidebar content: content that appears on the sidebar of your blog (if you are going to have one)&lt;/li&gt;
&lt;li&gt;  Blog category pages: content (around 100 words) for category pages on your blog (plus pick categories to divide your content)&lt;/li&gt;
&lt;li&gt;  SEO meta tags: content for the SEO title and description tags of each page (not seen on the actual page but you need to have it ready)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Post-launch content
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;48%&lt;/strong&gt; of Technorati's Top 100 Blogs are managed with WordPress&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  Blog posts: regular articles you are going to write&lt;/li&gt;
&lt;li&gt;  Cornerstone content: this will be the base of your blog&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Extracted from &lt;a href="https://firstsiteguide.com/write-content/" rel="noopener noreferrer"&gt;firstsiteguide.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As beginner bloggers, you need to thrive to create good content. For that purpose, research and learn facts relating to the blog's theme. Although you have a good knowledge of a certain theme, do not ever stop, just search and learn more. Great content includes a lot of things such as images, videos, creative headlines, essential links, animations, interesting posts, and facts, etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tip&lt;/strong&gt;: Pay attention to create &lt;a href="https://www.jeffbullas.com/best-blog-content/" rel="noopener noreferrer"&gt;great content in your blog posts.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;5. Get to know your competitors: bloggers&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522202176988-66273c2fd55f.jpeg-2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1522202176988-66273c2fd55f.jpeg-2.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You have to keep an eye on what other bloggers are doing. That does not mean phishing or spying. It means that you have to study their styles, stories: inspirational -- how they started blogging. You can learn more from other's experiences. Be competitive with them. But, do not harm any other for your own success. Good policies for a blogger is important. Knowing about your competitors gives you motivation and helps you to create goals and achieve them. Moreover, have a self compare with your competitors' blogs and yours. It might help you to identify your own mistakes and grow fast.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;&lt;em&gt;How to Find Your Competitors&lt;/em&gt;&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Finding your competitors doesn't have to be taxing or complicated. The first step to finding your competitors is to differentiate between your direct and indirect competition.&lt;/p&gt;

&lt;h5&gt;
  
  
  &lt;strong&gt;Direct Competition&lt;/strong&gt;
&lt;/h5&gt;

&lt;blockquote&gt;
&lt;p&gt;Direct competition is a term that refers to the companies or publishers who sell or market the same products as your business. Your customers will often evaluate both you and your direct competitors before making a purchase decision or converting.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Conductor, Spotlight&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h5&gt;
  
  
  &lt;strong&gt;Indirect Competition&lt;/strong&gt;
&lt;/h5&gt;

&lt;blockquote&gt;
&lt;p&gt;Indirect competition is a term that refers to the companies or publishers that don't sell or market the same products but are in competition with your business digitally. They may write the same type of content as you and be competing for the same keywords. In short, they are competing for your customers' attention.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Conductor, Spotlight&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To learn more about getting &lt;a href="https://www.conductor.com/blog/2018/02/identify-competitors/" rel="noopener noreferrer"&gt;know your competitors&lt;/a&gt;, search web on your own&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;6. Create goals&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1488190211105-8b0e65b80b4e.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1488190211105-8b0e65b80b4e.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the beginning, creating goals leads you to success. Aims and goals maketh a person work hard without giving up. You can use to-do lists or any other method to write them up. Then you won't miss anything. Once you have a goal, you will definitely work hard to achieve it.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;7.&lt;/strong&gt; &lt;strong&gt;Choose a good host for your blog&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1506935412676-6fa7f9de5bda.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1506935412676-6fa7f9de5bda.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At very first, you need to choose a good host for your blog. That is the most important thing. There are many hosting services for your choice. As you are at the beginning of starting a blog, it is better to look for free hosting services. However, you can go for paid services if you have piles of bills. According to &lt;a href="https://www.hostingadvice.com/how-to/best-free-blog-hosting-sites/" rel="noopener noreferrer"&gt;HostingAdvice.com&lt;/a&gt;, Free blog hosting sites are great for beginners to get their feet wet in the blogosphere, but they may not be the best bet --- especially if you're looking for complete customization and a brand-specific site.&lt;/p&gt;

&lt;p&gt;Tip: Surf web freely looking for free hosting services. You will find many. Carefully choose one of them, newbie!&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;8. Decide how you would promote your blog&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1543185377-99cd16011803.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1543185377-99cd16011803.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After starting your blog, you need to promote your blog. For that purpose, you need to decide how you would promote your blog. Deciding it after creating the blog is not safe and sound. As it is the beginning, zero messes are better. You can use promoted posts, ads, videos, emails, etc.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;9.&lt;/strong&gt; &lt;strong&gt;Be perfect in SEO&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1499750310107-5fef28a66643.jpeg-1-1024x683.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1499750310107-5fef28a66643.jpeg-1-1024x683.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;When building an audience, traffic plays a major role. Do you know how to get traffic to your blog? That is why SEO ( Search Engine Optimization) comes for. There are two main sources of getting more readers/ audience to your blog. They are Paid Traffic and Organic Traffic. Paid traffic and Organic traffic both sources are great. Paid traffic, when targeted perfectly, will generate more sales. On the other hand, to get organic traffic, you need to optimize your website search engines with the help of SEO. Now you know why you should have a good knowledge of SEO.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;10.&lt;/strong&gt; &lt;strong&gt;Build an audience&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1460925895917-afdab827c52f.jpeg.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftalk.hyvor.com%2Fblog%2Fwp-content%2Fuploads%2F2020%2F01%2Fphoto-1460925895917-afdab827c52f.jpeg.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Building an audience is the most challenging task that beginner bloggers have to complete. This requires pretty much work. But, it does not require a lot than you think. Generally, there are several methods that bloggers use to build up an audience for themselves.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;How to build an audience&lt;/strong&gt;
&lt;/h4&gt;

&lt;ol&gt;
&lt;li&gt; Create a Twitter page for the blog&lt;/li&gt;
&lt;li&gt; Create a Facebook page the blog&lt;/li&gt;
&lt;li&gt; Set up emails for targetted recipients&lt;/li&gt;
&lt;li&gt; Choose a commenting system&lt;/li&gt;
&lt;/ol&gt;

&lt;h4&gt;
  
  
  Social media pages -- Twitter, Facebook...
&lt;/h4&gt;

&lt;p&gt;In the process of building an audience, social media pages highly matter. Most of the bloggers use Twitter as their official page of their blogs. However, they use Facebook pages too.&lt;/p&gt;

&lt;h4&gt;
  
  
  Building up an audience through e-mails
&lt;/h4&gt;

&lt;p&gt;As you have identifies what targetted audience is, you can find relevant email addresses from email directories, websites, articles. Collect a good number of email addresses from the above-mentioned sources. Moreover, write an email with an attractive layout informing the recipients about your blog. Send it to all the recipients you have chosen.&lt;/p&gt;

&lt;h4&gt;
  
  
  Commenting system
&lt;/h4&gt;

&lt;p&gt;Choosing the right comment system can make or break your blog. In a blog, the commenting system really matters. Commenting plugin is where the audience expresses their ideas, suggestions and carries discussions. If you want your audience to actively interact with your blog, you should especially consider the attractiveness and user-friendliness of the commenting system. People like eye-catching and charm interfaces. They would like to deal with user-friendly commenting plugins.&lt;/p&gt;

&lt;p&gt;When choosing a &lt;a href="https://problogger.com/commenting-system-rule-choosing-right-comment-system-can-make-break-blog/" rel="noopener noreferrer"&gt;good commenting system&lt;/a&gt;, consider the following aspects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  User-friendliness&lt;/li&gt;
&lt;li&gt;  Attractiveness -- commenting interface&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;PRO TIP: You can use &lt;a href="https://talk.hyvor.com/" rel="noopener noreferrer"&gt;Hyvor Talk&lt;/a&gt; as the commenting system. It's free!😊&lt;/p&gt;

&lt;p&gt;Follow these things before you start your blog. If you have any questions or suggestions please feel free to comment below. Happy Blogging!✌&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally Published on &lt;a href="https://talk.hyvor.com/blog/" rel="noopener noreferrer"&gt;Hyvor Talk Blog&lt;/a&gt;. Hyvor Talk is a commenting platform for blogs. We also help our users to grow by sharing tips and blog posts&lt;/em&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>blogging</category>
    </item>
    <item>
      <title>8 Tips For A Good Eye Health For Developers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Wed, 18 Dec 2019 13:47:53 +0000</pubDate>
      <link>https://forem.com/_ishiniavindya/8-tips-for-a-good-eye-health-for-developers-1mpd</link>
      <guid>https://forem.com/_ishiniavindya/8-tips-for-a-good-eye-health-for-developers-1mpd</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VrakHTok--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/EnVwhfB.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VrakHTok--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/EnVwhfB.jpg" alt="eyes" width="328" height="154"&gt;&lt;/a&gt;&lt;br&gt;
Eyes are the most important part of the human body. You know how important they are. It is important to know what makes your eye health bad and how to prevent it. Most of the people have eye problems, diseases such as &lt;a href="https://groups.hyvor.com/EyeHealthBlog/322/myopia-nearsightedness"&gt;Nearsightedness&lt;/a&gt;, &lt;a href="https://groups.hyvor.com/EyeHealthBlog/326/nearsightedness-vs-farsightedness"&gt;Farsightedness&lt;/a&gt;, &lt;a href="https://www.mayoclinic.org/diseases-conditions/glaucoma/symptoms-causes/syc-20372839"&gt;Glaucoma&lt;/a&gt;, Cataracts, Conjunctivitis, Macular Degeneration, Red eye, etc. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;They say the eyes are the windows to the soul. We don't know if that's true, but what we do know that having perfectly healthy eyes—excellent vision and clear eyes, free of pain or other symptoms—are crucial to your health and well-being. The good news is that it's easy to learn more about eye problems, symptoms, and the treatments that will keep you in tip-top shape ~Health.com~&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Good eye health is not only about how you are about your eyes. It is all about your overall health. As eye problems could start at any age, these 8 tips will be very useful for everyone.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Have a healthy diet&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2EO5HDwf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZWJsFH2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2EO5HDwf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZWJsFH2.jpg" alt="heathydiet " width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
A healthy diet is not just important or your eyes, it is important for your whole body. When you maintain a healthy diet, you will not have diabetes, obesity, etc. These diseases damage your eyes. You have to eat food with Vitamin A, C, E, B- especially green vegetables, yellow vegetables and fruits. omega-3 fish- etc. &lt;br&gt;
An inadequate intake of antioxidants, consumption of alcohol or saturated fats may create free-radical reactions that can harm the macula – the central part of the retina. High-fat diets can also cause deposits that constrict blood flow in the arteries. The eyes are especially sensitive to this, given the small size of the blood vessels that feed them.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Meet your eye doctor&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MubVKZmu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/dhWVB7D.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MubVKZmu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/dhWVB7D.jpg" alt="Imeet your doctor" width="284" height="177"&gt;&lt;/a&gt;&lt;br&gt;
Your eyes are unique. Each person has different eye situations. Their vision, health are different from each other.  Though you follow super duper tips, it doesn't worth if they do not suit your situation. So, it is important to meet your eye doctor and have an eye exam; he/she will give you advice for your eye health.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Exercise&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--UTXVIsdq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/hz7eliJ.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--UTXVIsdq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/hz7eliJ.jpg" alt="exercise" width="800" height="571"&gt;&lt;/a&gt;&lt;br&gt;
Exercise improves blood circulation, which improves oxygen levels to the eyes and the removal of toxins.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Get a good night's sleep&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nesIL4xn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZVLhmvy.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nesIL4xn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZVLhmvy.jpg" alt="good sleep" width="650" height="433"&gt;&lt;/a&gt;&lt;br&gt;
You’ll feel the difference when you get the sleep you need. You’ll look great, you’ll perform at home or work—and good rest will support the health of your eyes.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Wash your hands&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Jg_3aYOc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/BwoYLQX.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Jg_3aYOc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/BwoYLQX.jpg" alt="wash hands" width="775" height="437"&gt;&lt;/a&gt;&lt;br&gt;
Keeping your hands clean is so important when it comes to your eyes, especially if you’re a contact lens wearer. Before you touch your eye—and before you put in or remove a contact lens—wash your hands with mild soap and dry with a lint-free towel. Some germs and bacteria that come from your hands can cause eye infections, like bacterial conjunctivitis (pink eye). When you touch your eye, whatever is on your fingers goes right onto your eye’s surface. This is one way that people catch colds—rubbing their eyes while they have cold virus germs on their hands.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Don't Smoke&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GDDAR6kn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/YpASffL.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GDDAR6kn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/YpASffL.jpg" alt="do not smoke" width="800" height="609"&gt;&lt;/a&gt;&lt;br&gt;
Smoking exposes your eyes to high levels of oxidative stress. While the connection has not been clearly identified, it is known that smoking increases your risk for a variety of health conditions affecting the eye.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Wear Sunglasses&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--u6Dj6m_S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/yfxpEo6.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--u6Dj6m_S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/yfxpEo6.jpg" alt="wear sunglasses" width="800" height="401"&gt;&lt;/a&gt;&lt;br&gt;
To protect your eyes from harmful ultraviolet (UV) light, choose sunglasses with both UVA and UVB protection. Also, wearing a hat with a brim will greatly reduce the amount of UV radiation slipping around the side of your sunglasses. You can also use photochromic glasses as your doctor prescribes.&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;em&gt;Devices and Blue Light&lt;/em&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--4nvlsOeT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/1uTEHTm.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--4nvlsOeT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/1uTEHTm.jpg" alt="Avoid blue light" width="800" height="480"&gt;&lt;/a&gt;&lt;br&gt;
You're probably using digital devices for hours each day at work and at home. These devices are exposing your eyes to high energy blue light. It's called blue light because the wavelengths emitted are near the bluer part of the spectrum. This causes you to have eye strain, eye fatigue, dry eyes, etc.&lt;/p&gt;

&lt;p&gt;Through these tips, you will be able to have good eye health. Please feel free to comment below if you have any questions or suggestions&lt;/p&gt;

</description>
      <category>healthy</category>
      <category>developers</category>
      <category>eyehealth</category>
    </item>
    <item>
      <title>How Aesthetics Help Developers/Programmers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Tue, 17 Dec 2019 15:39:39 +0000</pubDate>
      <link>https://forem.com/_ishiniavindya/how-music-and-illustrations-help-developers-programmers-nca</link>
      <guid>https://forem.com/_ishiniavindya/how-music-and-illustrations-help-developers-programmers-nca</guid>
      <description>&lt;p&gt;Developers, Programmers are work so hard: they work hard using their brains. According to researches, people who work using their brains and work physically both need to care about themselves. When the brain gets tired, our body simultaneously gets tired because the mental situation matters everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  Your Brain at Work
&lt;/h2&gt;

&lt;p&gt;Your brain is the most significant part of your body. You cannot work without it. When you are working, all the command is given by your brain. Your thinking process is much t complicated than you think. Your brain does loads of work while you are working. It gets tired than you think, It causes you to get distracted, bored, and lose productivity.&lt;br&gt;
So, it is important to concern these situations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why aesthetical things?
&lt;/h2&gt;

&lt;p&gt;The above-mentioned situations are common among developers and programmers. They get distracted, get bored while they are working. These problems lead to losing their productivity.&lt;br&gt;
That is why aesthetical things are for.&lt;/p&gt;

&lt;h2&gt;
  
  
  What are aesthetical things?
&lt;/h2&gt;

&lt;p&gt;There are many aesthetical things that exist. Among them, below things help you to get rid of the above-mentioned problems.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Music&lt;/li&gt;
&lt;li&gt;Illustrations&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Music
&lt;/h3&gt;

&lt;p&gt;Music is the best cure. You can use light music, baroque music, modern music: you can use any kind of music you prefer.&lt;br&gt;
Neurologists say, listening to light music or baroque music is good for brain efficiency and health. Music interacts with your beta, theta and alpha waves in a very good manner. It helps you to &lt;a href="https://groups.hyvor.com/Productivity/169/how-to-improve-productivity-with-a-healthy-life"&gt;improve productivity&lt;/a&gt;, get rid of stress, to be energetic. It also helps you to bring the best in you. You will be able to work per day more than you did. Many developers and programmers say that music helps them to concentrate while coding or developing. Music helps to keep concentrated. People all over the world use music to concentrate.&lt;/p&gt;

&lt;h3&gt;
  
  
  Illustrations
&lt;/h3&gt;

&lt;p&gt;Illustrations are one of the aesthetical things people use for their needs. As developers and programmers, you can choose illustrations you like and paste or hang them on your wall. Whenever you get distracted, bored, you can stare at these illustrations and get back to work. There are especially drawn illustrations for concentration, mind healing, etc. Staring at illustrations helps you to improve productivity, get rid of stress. You will not get bored while working as you have illustrations with you.&lt;/p&gt;

&lt;p&gt;Enjoyed reading? Please feel free to comment if you have any questions or suggestions. And, I suggest you to share your personal experience of this topic through comments.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>aesthetics</category>
      <category>mentalhealth</category>
    </item>
    <item>
      <title>Ways To Practice Meditation And How Meditation Helps Developers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Tue, 17 Dec 2019 04:33:10 +0000</pubDate>
      <link>https://forem.com/_ishiniavindya/ways-to-practice-meditation-and-how-meditation-helps-developers-5dj5</link>
      <guid>https://forem.com/_ishiniavindya/ways-to-practice-meditation-and-how-meditation-helps-developers-5dj5</guid>
      <description>&lt;p&gt;This is the second article I am writing  just after &lt;a href="https://groups.hyvor.com/Productivity/142/meditation-and-you"&gt;"Meditation and You".&lt;/a&gt; I hope that you have got an idea about meditation reading &lt;a href="https://groups.hyvor.com/Productivity/142/meditation-and-you"&gt;"Meditation and You".&lt;/a&gt;&lt;br&gt;
In Buddhism, meditation was used by monks for the purposes of attaining Nibbana and the enlightenment. Most of the people use this as a definition of mediation. Meditation is a technique for training your mind as exercises for fitness training your body. Meditation is not just for monks and hippies. It is for all of us. Mediation plays a major role in training minds though it was mostly used by monks for ages.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;em&gt;“In the Buddhist tradition, the word ‘meditation’ is equivalent to a word like ‘sports’ in the U.S. It’s a family of activities, not a single thing,” University of Wisconsin neuroscience lab director Richard J. Davidson, Ph.D.&lt;/em&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dPkw5QoJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/guGykwl.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dPkw5QoJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/guGykwl.jpg" alt="Meditation|500×300" width="400" height="266"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Meditation is extremely different for beginners; sit for hours stationary and concentrate their mind think nothing: to have an empty mind. But if you follow the right tips and steps for practicing the meditation, you won't feel difficult. Starting from the &lt;a href="https://youtu.be/MKEUEWEVTiE"&gt;simplest method to meditate&lt;/a&gt;&lt;br&gt;
will help you to take an approach for great meditation practice. If you aren't a beginner, you can continue yourself with step by steps to fo further.&lt;/p&gt;

&lt;p&gt;There are particular kinds of mediation. &lt;br&gt;
&lt;em&gt;1. Concentration Meditation&lt;/em&gt;&lt;br&gt;
&lt;em&gt;2. Mindfulness Meditation&lt;/em&gt;&lt;br&gt;
&lt;em&gt;3. Other Meditation Techniques&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  1. Concentration Meditation
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hDGQ0zNw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/yAVuL0N.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hDGQ0zNw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/yAVuL0N.jpg" alt="Concentration Meditation" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In general, the simplest way to go through meditation is Concentration Meditation. Concentration meditation is focusing on something for a period of time you choose for meditation. This entails following breathe, chanting a single word: manthra, counting beads of a neckless/mala calmly, staring at a candle flame, listening only to a repetitive Gong and staring at any object you like. As focusing/ concentrating the mind is challenging, beginners might meditate for minutes and continue meditating for hours. Although concentrating is challenging, once you practice, you will love it! In concentration meditation, you have to continuously focus on an object or anything you choose. As your mind tries to get away from it, you have to refocus on your chosen object/sound. Unwanted thoughts might come into your mind; you have to let them go away, do not grant permission them to meet your conscious/ subconscious mind. Do not let your mind meander. You might fail - that is okay. Start again and this incessant procedure improves your ability of concentration.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;em&gt;"Meditation and Concentration are the way to a life of serenity" - Baba Ram Das&lt;/em&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Mindfulness Meditation
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--UvONlXBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/qzac9W2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--UvONlXBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/qzac9W2.jpg" alt="Mindfulness Meditation" width="800" height="445"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://en.m.wikipedia.org/wiki/Mindfulness"&gt;Mindfulness&lt;/a&gt;meditation exhorts the practitioner to observe wandering thoughts as they drift through the mind. This makes the practitioner aware as a thought arises in lieu of judging them. Mindfulness meditation is not just a piece of cake: taking a seat, concentrate on the breath. You can do this while you are eating, brushing teeth, bathing, walking, sleeping. Through mindfulness meditation, you can see how your thoughts and feelings tend to move in particular patterns. Over time, you can become more aware of the human tendency to quickly judge an experience as good or bad, pleasant or unpleasant. With practice, an inner balance develops.&lt;br&gt;
Through mindfulness meditation, you can control your own thoughts within just a snap of fingers.&lt;br&gt;
The practice of mindfulness and mindful meditation in itself isn’t difficult, once you are shown the technique, but continuing to remain present in any moment does require awareness – of when your thoughts are not present or when you are being judgemental of your situation or surroundings, or your mind is elsewhere.&lt;/p&gt;

&lt;h1&gt;
  
  
  3. Other Meditation Techniques
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hCRlU5Km--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/X7JcuJq.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hCRlU5Km--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/X7JcuJq.jpg" alt="Standing" width="640" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There are various other meditation techniques. For example, a daily meditation practice among Buddhist monks focuses directly on the cultivation of compassion. This involves envisioning negative events and recasting them in a positive light by transforming them through compassion. There are also moving meditation techniques, such as tai chi, qigong, and walking meditation. Walking meditation was initially used by Buddhist monks. It still remains among them; they say that it helps them a lot for their daily process of meditation.&lt;/p&gt;

&lt;h1&gt;
  
  
  How to meditate
&lt;/h1&gt;

&lt;p&gt;I hereby give you a simple set of meditation steps. You can follow this up and wax your procedure of meditation advanced. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Sit, lie, or stand as you prefer&lt;/strong&gt;&lt;br&gt;
You can choose any way among sitting, lying, and standing. But you have to choose a quiet, calm place. This is very important to get rid of the distraction. Distraction kills your concentration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Close your eyes&lt;/strong&gt;&lt;br&gt;
I recommend you to close your eyes as it helps you to concentrate. Closing eyes is essential for beginners: you feel bored and give up as your mind tries to meander often. If you are a guru of meditation, you can either close your eyes or keep them opened. You can use Cooling Eye Masks or Restorative Eye Pillows if you lie down.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Make no effort to breathe in &amp;amp; out&lt;/strong&gt;&lt;br&gt;
Do not try to make an effort to breathe. Just do it as usual.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Focus your attention on breathing&lt;/strong&gt;&lt;br&gt;
Notice your movement of the body as you breathe. Notice the sense you feel when you inhale in and out - you feel as air passes through your nose. Try only to focus on your breathing, do not let your mind wander here and there. If you get distracted, just start again.&lt;/p&gt;

&lt;p&gt;You can choose an object, a sound clip, a mala with beads, a chant or mantra instead of choosing to focus on breathing.&lt;/p&gt;

&lt;p&gt;Follow this meditation process for 2-5 minutes. Sequentially you can try it for longer periods of time. Good luck with that!&lt;/p&gt;

&lt;h1&gt;
  
  
  How Meditation Helps You - Benefits of Meditation
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5ogdm137--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/LimTdza.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5ogdm137--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/LimTdza.jpg" alt="Benifites" width="700" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;1. Stress reduction&lt;/em&gt;&lt;br&gt;
&lt;em&gt;2. Controls anxiety&lt;/em&gt;&lt;br&gt;
&lt;em&gt;3. Promotes emotional health&lt;/em&gt;&lt;br&gt;
&lt;em&gt;4. Improves productivity&lt;/em&gt;&lt;br&gt;
&lt;em&gt;5. Enhances self - awareness&lt;/em&gt;&lt;br&gt;
&lt;em&gt;6. Lengthens attention span&lt;/em&gt;&lt;br&gt;
&lt;em&gt;7. May reduced age-related memory loss: such as Dementia&lt;/em&gt;&lt;br&gt;
&lt;em&gt;8. May help to fight addictions&lt;/em&gt;&lt;br&gt;
&lt;em&gt;9. Helps to have a good sleep&lt;/em&gt;&lt;br&gt;
&lt;em&gt;10. Decreases blood pressure&lt;/em&gt;&lt;br&gt;
&lt;em&gt;11. Lower blood cortisol levels&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I hope this article will help you to go through meditation and have a healthy, happy life. If you have any questions and suggestions, please comment below. Share this article among your friends to help them with meditation&lt;/p&gt;

</description>
      <category>developers</category>
      <category>mentalhealth</category>
      <category>meditation</category>
    </item>
    <item>
      <title>How To Improve Productivity With A Healthy Life For Developers</title>
      <dc:creator>Ishini Avindya</dc:creator>
      <pubDate>Mon, 16 Dec 2019 05:50:52 +0000</pubDate>
      <link>https://forem.com/_ishiniavindya/how-to-improve-productivity-with-a-healthy-life-for-developers-4jpn</link>
      <guid>https://forem.com/_ishiniavindya/how-to-improve-productivity-with-a-healthy-life-for-developers-4jpn</guid>
      <description>&lt;p&gt;Today, none of the people are free of work. We all thrive to fulfill our desires. Developers are the same. They work so hard. Most of the developers forget to concern about their health. Not only developers, but most of the people in the world are also the same. That should not happen. There is nothing worth more than our health. If we are down with illnesses,  every other thing is useless.&lt;/p&gt;

&lt;p&gt;Researchers have pointed out that 95% percent of the people do not concern about their health unless they found that they are sick. Most of the people have diabetes, cholesterol, heart diseases, etc. There are several reasons which cause those illnesses. Most of those reasons' epicenter is carelessness.&lt;/p&gt;

&lt;p&gt;Bad health definitely kills productivity. Now can you understand why health is much important in improving productivity?&lt;/p&gt;

&lt;h1&gt;
  
  
  What Can Developers Do?
&lt;/h1&gt;

&lt;p&gt;There are lots of strategies to &lt;a href="https://groups.hyvor.com/Productivity/165/17-amazing-tips-to-improve-productivity"&gt;improve productivity&lt;/a&gt; while maintaining a healthy life. &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Do not miss the breakfast&lt;/li&gt;
&lt;li&gt;Have a healthy lunch &lt;/li&gt;
&lt;li&gt;Do exercises&lt;/li&gt;
&lt;li&gt;Use time managing techniques&lt;/li&gt;
&lt;li&gt;Avoid junk food - prepare your meals at home&lt;/li&gt;
&lt;li&gt;Have healthy snacks&lt;/li&gt;
&lt;li&gt;Meet your doctor&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  1. Do not miss the breakfast
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2EO5HDwf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZWJsFH2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2EO5HDwf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZWJsFH2.jpg" alt="breakfast" width="800" height="450"&gt;&lt;/a&gt;&lt;br&gt;
Breakfast is the most important part of your diet. If you miss your breakfast, you will suffer from gastritis. Most of the developers skip their breakfast often. Breakfast makes you feel energized and it helps you to improve productivity.&lt;/p&gt;

&lt;h1&gt;
  
  
  2. Have a healthy lunch
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EnUOwzrG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/Z7Wco85.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EnUOwzrG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/Z7Wco85.jpg" alt="lunch" width="300" height="168"&gt;&lt;/a&gt;&lt;br&gt;
This is also important to get rid of diseases. Skipping your meals causes you to have diabetes and gastritis too. It also helps you to improve productivity as you feel boosted and fulfilled. &lt;/p&gt;

&lt;h1&gt;
  
  
  3. Do exercises
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--UTXVIsdq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/hz7eliJ.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--UTXVIsdq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/hz7eliJ.jpg" alt="do exercises" width="800" height="571"&gt;&lt;/a&gt;&lt;br&gt;
Exercises are very important in maintaining a healthy life. Because a body without exercise is useless. Exercises are the way to have a healthy life. As developers, you might be busy. You can schedule your exercises fir 15 -20 minutes. Doing it daily is more than enough. &lt;/p&gt;

&lt;h1&gt;
  
  
  4. Use time managing techniques
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iOfbhnLf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/s9polCF.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iOfbhnLf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/s9polCF.png" alt="time management" width="771" height="424"&gt;&lt;/a&gt;&lt;br&gt;
Following this tip makes your life with work easy peacy that you can work with full of energy and enthusiasm. We all get stuck with time managing and most of the people give up themselves. Such a waste isn't it? Start using time managing steps - &lt;a href="https://leadx.org/articles/two-minute-rule/"&gt;2-minute rule&lt;/a&gt;, &lt;a href="https://leadx.org/articles/two-minute-rule/"&gt;POMODORO&lt;/a&gt; - when working. It will reduce your stress levels and helps to work efficiently. As it reduces stress, you can have a healthy life - mentally - while improving productivity. This will also give you time to do physical activities - you can do exercises using that time period.&lt;/p&gt;

&lt;h1&gt;
  
  
  5. Avoid junk food
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZKmiwwPI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/jSqYaL2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZKmiwwPI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/jSqYaL2.jpg" alt="avoid junk food" width="620" height="330"&gt;&lt;/a&gt;&lt;br&gt;
As you are much busy with work, you prefer to have junk food such a hamburger, short eats, soft drinks, etc. This causes obesity, diabetes, cholesterol, cancers, etc. Having homemade meals is the best. &lt;/p&gt;

&lt;h1&gt;
  
  
  6. Have a healthy snack
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LUm3XVWs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/uWIBXqu.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LUm3XVWs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/uWIBXqu.jpg" alt="healthy snack" width="800" height="534"&gt;&lt;/a&gt;&lt;br&gt;
You may prefer to have a snack while you are working during the breaks. Most of the developers, programmers have a bias to artificial snacks such as chips, coca-cola drinks. These snacks are the way to death. Have healthy snacks concerning your own health.&lt;/p&gt;

&lt;h1&gt;
  
  
  7. Meet your doctor
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MubVKZmu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/dhWVB7D.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MubVKZmu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/dhWVB7D.jpg" alt="meet you doctor" width="284" height="177"&gt;&lt;/a&gt;&lt;br&gt;
Meeting your doctor once per month or 3 weeks is better. You can check how healthy you are and decide what to do next to have a healthy life. You can take advice from your doctor too. &lt;/p&gt;

&lt;h1&gt;
  
  
  8. Have a good sleep
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nesIL4xn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZVLhmvy.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nesIL4xn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://i.imgur.com/ZVLhmvy.jpg" alt="good sleep" width="650" height="433"&gt;&lt;/a&gt;&lt;br&gt;
This is very important because sleep is essential for everyone. Especially for people who work 90% using their brain. This also reduces stress levels, anxiety and  improve your productivity&lt;/p&gt;

&lt;p&gt;With all of these tips, I am sure that developers, programmers can improve their productivity with a healthy life. If you have questions, suggestions, please comment below.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>healthylife</category>
      <category>healthcare</category>
      <category>developers</category>
    </item>
  </channel>
</rss>
