<?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: Sunny Kumar</title>
    <description>The latest articles on Forem by Sunny Kumar (@5unnykum4r).</description>
    <link>https://forem.com/5unnykum4r</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%2F452903%2F453ff909-35e5-4c15-a142-dae82a7abb32.jpg</url>
      <title>Forem: Sunny Kumar</title>
      <link>https://forem.com/5unnykum4r</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/5unnykum4r"/>
    <language>en</language>
    <item>
      <title>Automatically Update Date &amp; Year in WordPress Affiliate Post</title>
      <dc:creator>Sunny Kumar</dc:creator>
      <pubDate>Tue, 09 Mar 2021 10:21:23 +0000</pubDate>
      <link>https://forem.com/5unnykum4r/automatically-update-date-year-in-wordpress-affiliate-post-4876</link>
      <guid>https://forem.com/5unnykum4r/automatically-update-date-year-in-wordpress-affiliate-post-4876</guid>
      <description>&lt;p&gt;We all publish several articles on our website which is related to affiliate products like "&lt;em&gt;Best XYZ Under XYZ Price&lt;/em&gt;". &lt;/p&gt;

&lt;p&gt;While publishing the post on their blogs, people use the H2 format (as we shared below) to include year or months in their affiliate posts - like I'm using on my &lt;a href="https://thelifetimedeal.com/" rel="noopener noreferrer"&gt;lifetime deal website&lt;/a&gt;.&lt;/p&gt;

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

&lt;p&gt;The main issue with using this type of heading is, When a year or month changed, we have to update them with the latest one and there is no easy way to do it.&lt;/p&gt;

&lt;p&gt;Therefore, here is a code which automatically shows the current year;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function year_shortcode() {
  $year = date('Y'); 
  return $year;
}
add_shortcode('year', 'year_shortcode');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And to show the current month along with the year, the code is as follow;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function year_shortcode() {
  $year = date('F Y'); 
  return $year;
}
add_shortcode('year', 'year_shortcode');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;It is a basic code which you can include in your &lt;strong&gt;function.php&lt;/strong&gt; file or use plugins like &lt;strong&gt;Code Snippets&lt;/strong&gt; (which I recommend).&lt;/p&gt;

&lt;p&gt;Once you've added the code, use the shortcode &lt;strong&gt;[year]&lt;/strong&gt; with your H2 heading or in your paragraphs, like this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;10 Bestselling Mixer Grinder in India [year]&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The shortcode will output the current year automatically for you, like this,&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;10 Bestselling Mixer Grinder in India 2021&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;This shortcode will not work with SEO title and meta description (Based on your SEO Plugin, there is a separate code for this)&lt;/p&gt;

&lt;p&gt;For example, You can use %currentmonth% and %currentyear% in Rankmath and Yoast to show the fresh month and year in &lt;a href="https://thewpx.com/best-serp-tracking-tools/" rel="noopener noreferrer"&gt;SERP Results&lt;/a&gt;. &lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>affiliate</category>
    </item>
    <item>
      <title>How to Check the Compatibility of PC Parts?</title>
      <dc:creator>Sunny Kumar</dc:creator>
      <pubDate>Tue, 03 Nov 2020 08:01:46 +0000</pubDate>
      <link>https://forem.com/5unnykum4r/how-to-check-the-compatibility-of-pc-parts-2ck7</link>
      <guid>https://forem.com/5unnykum4r/how-to-check-the-compatibility-of-pc-parts-2ck7</guid>
      <description>&lt;p&gt;I know it's painful to check the compatibility of PC parts and build your own PC, especially when you don't know the compatibility of the products.&lt;/p&gt;

&lt;p&gt;So looking at all these things, today we're sharing an exclusive post on checking the compatibility of PC Parts even before buying them.&lt;/p&gt;

&lt;p&gt;This guide will help you to efficiently choose the best and compatible products for building your PC, and it will also help you to invest your hard-earned money on compatible parts rather than losing on incompatible or parts with bottleneck issues.&lt;/p&gt;

&lt;p&gt;So let's get started...&lt;/p&gt;

&lt;h2&gt;
  
  
  Steps to Build Your Custom PC
&lt;/h2&gt;

&lt;p&gt;You're still reading this post, then probably you're looking to build your PC by yourself but due to a lack of knowledge in computer compatibility, but now you need not to be in fear of losing your hard-earned money.&lt;/p&gt;

&lt;p&gt;So the first step in building your PC is selecting the processor and then all other main components.&lt;/p&gt;

&lt;p&gt;Here I'm listing the components which are essential for building the PC;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Processor&lt;/li&gt;
&lt;li&gt;Motherboard&lt;/li&gt;
&lt;li&gt;Graphics Card&lt;/li&gt;
&lt;li&gt;RAM&lt;/li&gt;
&lt;li&gt;Storage&lt;/li&gt;
&lt;li&gt;Cooling Fans&lt;/li&gt;
&lt;li&gt;Power Supply&lt;/li&gt;
&lt;li&gt;Case&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;But before we proceed to check the compatibility manually, I would like to share a few sites with you. &lt;/p&gt;

&lt;p&gt;These sites are essential for checking the products' compatibility before buying them and provides you with a full-proof compatibility test by analyzing products on thousands of compatibility algorithms.&lt;/p&gt;

&lt;p&gt;These websites are;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;a href="https://pcbuilder.net" rel="noopener noreferrer"&gt;PC Builder&lt;/a&gt;: It is one of the best websites out there to check the compatibility of pc parts without actually having them. They claim to have more than hundreds of computer algorithms written for checking the compatibility of PC parts.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://buildmypc.net" rel="noopener noreferrer"&gt;Build My PC&lt;/a&gt;: Came to existence in 2018, Build My PC is another widely used pc builder to check the compatibility of pc parts. They claim to have hundreds of algorithms for checking the compatibility of pc parts.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://pcpartpicker.com" rel="noopener noreferrer"&gt;PCPartPicker&lt;/a&gt;: One of the oldest websites in the market for checking the compatibility of pc parts. They're in the market since 2007, and they've one of the most advanced systems to check the compatibility of PC parts available on various merchants.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here you can find some more tools which can be used for &lt;a href="https://thepcbuild.net/best-custom-pc-builder-websites/" rel="noopener noreferrer"&gt;checking the compatibility&lt;/a&gt; and buying the customized PC.&lt;/p&gt;

&lt;p&gt;If you want, you can use these websites to check the compatibility of PC parts before actually buying them - but we can't be 100% sure about these tools.&lt;/p&gt;

&lt;p&gt;Here I'm writing how you can manually check the compatibility of the parts (also cross-check these compatibilities, if you're using the tools I shared above).&lt;/p&gt;

&lt;h3&gt;
  
  
  Processor
&lt;/h3&gt;

&lt;p&gt;As you know, the processor is the brain of the computer. So first, we have to choose the brain. While choosing the processor, we got two main-streamed lines, AMD and Intel.&lt;/p&gt;

&lt;p&gt;But what's the difference between them?&lt;/p&gt;

&lt;p&gt;Both of them are indeed good players in the market with top-notch performance, but the main difference between both of them are backward compatibility and price.&lt;/p&gt;

&lt;p&gt;Intel processors aren't backward compatible as the AMD. It changes generation and compatibility with every generation update, where's when we talk about the AMD, they're backward compatible and are compatible with predecessor motherboard.&lt;/p&gt;

&lt;h3&gt;
  
  
  Motherboard
&lt;/h3&gt;

&lt;p&gt;Once you select the processor, the next thing you've to look at is the motherboard. It is another most important component, and while selecting the motherboard, the first thing you should have to do is, match their socket type with the processor.&lt;/p&gt;

&lt;p&gt;We're doing this because a motherboard with AM4 socket type is only compatible with the processor having AM4 socket type. &lt;/p&gt;

&lt;p&gt;Next to it, you've to check the chipset supported by your processor with the motherboard. As I told you above, in AMD, they're backward compatible, so they can work with old generation AM4 motherboard too, but when we talk about the Intel, they're not backward compatible.&lt;/p&gt;

&lt;p&gt;So, in this case, you've to check the chipset supported by your processor and look out at the motherboard, which supports the same chipset.&lt;/p&gt;

&lt;h3&gt;
  
  
  Graphics Card
&lt;/h3&gt;

&lt;p&gt;Now we've to choose the graphics card. It is also known as the video card. A Graphics card is another most important core component for building a powerful PC.&lt;/p&gt;

&lt;p&gt;They also use to render the video and output them on your monitor. While selecting the graphics card, you don't have to match the socket type or chipset like we do in the motherboard - but we have to look at the PCIe interface.&lt;/p&gt;

&lt;p&gt;PCIe interface are backward compatible, so a graphics card with PCIe 3.0 works well with PCIe 2.0 port in motherboard - but look for the motherboard, which supports the latest PCIe interface for optimal performance.&lt;/p&gt;

&lt;h3&gt;
  
  
  RAM
&lt;/h3&gt;

&lt;p&gt;Most of the people get confused while choosing RAM because of the speed and capacity issue. When I first built a computer for myself, even I find it difficult to build a PC due to a speed issue in RAM.&lt;/p&gt;

&lt;p&gt;But don't worry!&lt;/p&gt;

&lt;p&gt;Speed in RAM simply means the speed it can go up to. A DDR4 based RAM has a stock speed of 2133 MHz and anything above it simply means it can be overclocked.&lt;/p&gt;

&lt;p&gt;And when it comes to the capacity, I highly recommend you to grab anything above 16GB and if you wanted to do hardcore gaming, then I suggest you to grab minimum 32GB of RAM.&lt;/p&gt;

&lt;h3&gt;
  
  
  Storage
&lt;/h3&gt;

&lt;p&gt;Storage is a core component of your system. It is used to store the operating system and all the other application data in your system and it helps in booting the system.&lt;/p&gt;

&lt;p&gt;It comes in different types and sizes, including Mechanical Drive, SATA SSD, NVMe M.2 but they all are compatible with each other.&lt;/p&gt;

&lt;p&gt;SSDs are much faster than mechanical hard drives. So grab the best storage unit accordingly for optimal performance.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cooling Fans
&lt;/h3&gt;

&lt;p&gt;Cooling fans are another top-most core component that you have to grab for your PC. It prevents the processor from overheating the system.&lt;/p&gt;

&lt;p&gt;And when it comes to compatibility, they come in two different types, Liquid Cooler and Air Cooler.&lt;/p&gt;

&lt;p&gt;As the name, a Liquid cooler uses water to cool down your processor from overheating whereas an air cooler uses air to cool it down. &lt;/p&gt;

&lt;p&gt;This is why liquid coolers are much more efficient than normal coolers but with great pros, there are great cons of using liquid cooler, it can be dangerous for your system if water leaks into hardware.&lt;/p&gt;

&lt;h3&gt;
  
  
  Power Supply
&lt;/h3&gt;

&lt;p&gt;It is another top-most required &lt;a href="https://pcbuilding.net/components/" rel="noopener noreferrer"&gt;component in PCs&lt;/a&gt;. The power supply is used to provide the power wattage required by every component to work perfectly.&lt;/p&gt;

&lt;p&gt;If anyhow you got a power supply with under wattage, the chances are, your system will not even boot up properly.&lt;/p&gt;

&lt;p&gt;Along with it, you should have to look at the size of the power supply you're getting to buy. Mostly the power supply comes in standard ATX packages, which is fine - but I still recommend you to once check the form factor of your power supply.&lt;/p&gt;

&lt;h3&gt;
  
  
  Case
&lt;/h3&gt;

&lt;p&gt;Last but not least component is the case or also know as chassis. It is one of the most important core components which is used to place all other components.&lt;/p&gt;

&lt;p&gt;Depending upon the Motherboard, you'll get majorly four types of case, and these are;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Mini ITX (for ITX Motherboard),&lt;/li&gt;
&lt;li&gt;Mini Tower (for Micro ATX Motherboard),&lt;/li&gt;
&lt;li&gt;Mid Tower (for ATX Motherboard), and&lt;/li&gt;
&lt;li&gt;Full Tower (for EATX Motherboard).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Another thing which you need to make sure of is, some motherboards with EATX sizes can also fit in the Mid Tower case. &lt;/p&gt;

&lt;p&gt;So keeping all these factors in mind, you have to buy an efficient case for your motherboard and all other devices which can easily fit in your case.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrapping Up!
&lt;/h2&gt;

&lt;p&gt;In this guide, I tried my best to explain everything related to the compatibility of the product. You can follow this guide to assure the compatibility of the PC product you're going to buy. Furthermore, I highly recommend using &lt;a href="https://dev.to/sunnybundel/best-custom-pc-builder-websites-in-2021-4b7g"&gt;custom pc builder websites&lt;/a&gt; to check the compatibility of each and every pc parts.&lt;/p&gt;

&lt;p&gt;Along with it, I highly recommend using the tools I shared above for cross-checking the compatibility of the PC parts. &lt;/p&gt;

&lt;p&gt;Happy Building :)&lt;/p&gt;

</description>
      <category>hardware</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
