<?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: Abhay Goswami</title>
    <description>The latest articles on Forem by Abhay Goswami (@abhay676).</description>
    <link>https://forem.com/abhay676</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%2F138966%2F1538a572-6a0c-45ca-bd72-f65661045443.jpg</url>
      <title>Forem: Abhay Goswami</title>
      <link>https://forem.com/abhay676</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/abhay676"/>
    <language>en</language>
    <item>
      <title>How to implement notification system like DEV</title>
      <dc:creator>Abhay Goswami</dc:creator>
      <pubDate>Fri, 12 Jun 2020 06:42:14 +0000</pubDate>
      <link>https://forem.com/abhay676/how-to-implement-notification-system-like-dev-3gnl</link>
      <guid>https://forem.com/abhay676/how-to-implement-notification-system-like-dev-3gnl</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;I like the way notification system work in DEV but want to know how I can make notification system like that.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For web application ( in-app notification ) &lt;strong&gt;NOT push notifications&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I know about &lt;a href="https://getstream.io/get_started/"&gt;GetStream&lt;/a&gt; but it is too costly.&lt;br&gt;
It is better if someone tell me how to implement our own notification system &lt;/p&gt;

&lt;p&gt;Thanks in advance. &lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
    <item>
      <title>Why we need Docker?</title>
      <dc:creator>Abhay Goswami</dc:creator>
      <pubDate>Mon, 08 Jun 2020 19:08:44 +0000</pubDate>
      <link>https://forem.com/abhay676/why-we-need-docker-4gdh</link>
      <guid>https://forem.com/abhay676/why-we-need-docker-4gdh</guid>
      <description>&lt;p&gt;Hi, everyone this is my first post about &lt;em&gt;Docker&lt;/em&gt;. I just get a chance to learn about docker and apply in the production at my company.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Before learning docker. First we should clear that Why we need docker and some old school development process?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  The bad old days
&lt;/h3&gt;

&lt;p&gt;Applications run businesses. If applications break, businesses suffer and sometimes go away. These statements get truer every day!&lt;/p&gt;

&lt;p&gt;Most applications run on servers. And in the past, we could only run one application per server. The open-systems world of Windows and Linux just didn’t have the technologies to safely and securely run multiple applications on the same server.&lt;/p&gt;

&lt;p&gt;So, the story usually went something like this... Every time the business needed a new application, IT would go out and buy a new server. And most of the time nobody knew the performance requirements of the new application! This meant IT had to make guesses when choosing the model and size of servers to buy.&lt;/p&gt;

&lt;p&gt;As a result, IT did the only thing it could do - it bought big fast servers with lots of resiliency.Under-powered servers might be unable to execute transactions, which might result in lost customers and lost revenue. So, IT usually bought bigger servers than were actually needed. This resulted in huge numbers of servers operating as low as 5-10% of their potential capacity. &lt;strong&gt;A tragic waste of company capital and resources!&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Hello VMVare !&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;VMware, Inc. &lt;em&gt;gave the world a gift - the virtual machine (VM)&lt;/em&gt;. We finally had a technology that would let us safely and securely run multiple business applications on a single server.&lt;/p&gt;

&lt;p&gt;All of a sudden, we could squeeze massive amounts of value out of existing corporate assets, such as servers, resulting in a lot more bang for the company’s buck.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;But... and there’s always a but! As great as VMs are, they’re not perfect!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The fact that every VM requires its own dedicated OS is a major flaw. Every OS consumes CPU, RAM and storage that could otherwise be used to power more applications. Every OS needs patching and monitoring. VMs are slow to boot and portability isn’t great - migrating and moving VM workloads between hypervisors and cloud platforms is harder than it needs to be.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Hello Containers!&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;For a long time, the big web-scale players like Google have been using container technologies to address these shortcomings of the VM model.&lt;/p&gt;

&lt;p&gt;In the container model the container is roughly analogous to the VM. The major difference through, is that &lt;em&gt;every container does not require a full-blown OS&lt;/em&gt;. In fact, all containers on a single host share a single OS. This frees up huge amounts of system resources such as CPU, RAM, and storage.&lt;/p&gt;

&lt;p&gt;Containers are also &lt;em&gt;fast to start and ultra-portable&lt;/em&gt;. Moving container workloads from your laptop, to the cloud, and then to VMs or bare metal in your data center is a breeze.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Linux containers&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Modern containers started in the Linux world and are the product of an immense amount of work from a wide variety of people over a long period of time. Just as one example, Google Inc. has contributed many container-related technologies to the Linux kernel. Without these, and other contributions, we wouldn’t have&lt;br&gt;
modern containers today.&lt;/p&gt;

&lt;p&gt;Some of the major technologies that enabled the massive growth of containers in recent years include &lt;strong&gt;kernel namespaces, control groups, and of course Docker&lt;/strong&gt;. The modern container ecosystem is deeply indebted to the many individuals and organizations that laid the strong foundations that we currently build on!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Windows containers&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Over the past few years, Microsoft Corp. has worked extremely hard to bring Docker and container technologies to the Windows platform.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In achieving this, Microsoft has worked closely with Docker, Inc.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The core Windows technologies required to implement containers are collectively referred to as Windows Containers. The user-space tooling to work with these Windows Containers is Docker. This makes the Docker experience on Windows almost exactly the same as Docker on Linux. This way developers and sysadmins familiar with the Docker toolset from the Linux platform will feel at home using Windows containers.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Windows containers vs Linux containers&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;It’s vital to understand that a &lt;em&gt;running container uses the kernel of the host machine it is running on&lt;/em&gt;. This means that a container designed to run on a host with a Windows kernel will not run on a Linux host. This means that you can think of it like this at a high level - Windows containers require a Windows Host, and Linux containers require a Linux host.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Thanks for reading.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Next post will cover about Docker&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;make sure you follow me for the updates and If you like the post then please like and give your feedback so that I can improve in my next post.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>docker</category>
    </item>
  </channel>
</rss>
