<?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>DEV Community: Abhishek singh</title>
    <description>The latest articles on DEV Community by Abhishek singh (@abhi11210646).</description>
    <link>https://dev.to/abhi11210646</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%2F150444%2Fc0601927-0a33-464c-8d66-0bb72af526e1.jpg</url>
      <title>DEV Community: Abhishek singh</title>
      <link>https://dev.to/abhi11210646</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhi11210646"/>
    <language>en</language>
    <item>
      <title>How to add message type as object in ProtoBuf (gRPC) - Proto3 Syntax?</title>
      <dc:creator>Abhishek singh</dc:creator>
      <pubDate>Mon, 16 Mar 2020 18:49:18 +0000</pubDate>
      <link>https://dev.to/abhi11210646/how-to-add-message-type-as-object-in-protobuf-grpc-proto3-syntax-53m0</link>
      <guid>https://dev.to/abhi11210646/how-to-add-message-type-as-object-in-protobuf-grpc-proto3-syntax-53m0</guid>
      <description>&lt;p&gt;&lt;a href="https://stackoverflow.com/a/60701365/3342447"&gt;https://stackoverflow.com/a/60701365/3342447&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Multiple MongoDB database Connections in NodeJS</title>
      <dc:creator>Abhishek singh</dc:creator>
      <pubDate>Mon, 22 Jul 2019 06:59:57 +0000</pubDate>
      <link>https://dev.to/abhi11210646/multiple-mongodb-database-connections-in-nodejs-4jo</link>
      <guid>https://dev.to/abhi11210646/multiple-mongodb-database-connections-in-nodejs-4jo</guid>
      <description>&lt;p&gt;MongoDB allows configuring a secondary replica node to be hidden. It means that the secondary replica node will not be elected as Primary in case of primary node failure. Wait… But why we need such a replica node? The answer is that the application can transfer its analytics(read heavy) queries to this node so the primary node will not suffer any hiccup because of heavy read analytics queries. &lt;br&gt;
Read More...&lt;/p&gt;

&lt;p&gt;&lt;a href="https://medium.com/@abhi11210646/multiple-mongodb-database-connections-in-nodejs-ee4b75cc70e3"&gt;https://medium.com/@abhi11210646/multiple-mongodb-database-connections-in-nodejs-ee4b75cc70e3&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mongodb</category>
      <category>node</category>
      <category>mongoose</category>
    </item>
    <item>
      <title>Hackerearth hiring coding challenge</title>
      <dc:creator>Abhishek singh</dc:creator>
      <pubDate>Fri, 29 Mar 2019 04:15:10 +0000</pubDate>
      <link>https://dev.to/abhi11210646/hackerearth-hiring-coding-challenge-1l02</link>
      <guid>https://dev.to/abhi11210646/hackerearth-hiring-coding-challenge-1l02</guid>
      <description>&lt;p&gt;&lt;em&gt;Hotel Problem&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Management wants to optimize the usage of electricity consumption and also ensure that there is no inconvenience caused to the guests and staff. So, it has installed Motion Sensors at appropriate places and has approached you to program a Controller which takes inputs from these sensors and controls various equipment&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The way the hotel equipment are organized and the requirements for the Controller are listed below.&lt;/p&gt;

&lt;p&gt;● A Hotel can have multiple floors.&lt;/p&gt;

&lt;p&gt;● Each Floor can have multiple main corridors and sub-corridors&lt;/p&gt;

&lt;p&gt;● Both main corridor and sub corridor have one light each.&lt;/p&gt;

&lt;p&gt;● Both main and sub corridor lights consume 5 units of power when ON.&lt;/p&gt;

&lt;p&gt;● Both main and sub corridor have independently controllable ACs.&lt;/p&gt;

&lt;p&gt;● Both main and sub corridor ACs consume 10 units of power when ON.&lt;/p&gt;

&lt;p&gt;● If there is no movement in particular sub corridors then turn off light and turn on AC for that sub-corridor.&lt;/p&gt;

&lt;p&gt;● If there is movement in particular sub corridors then turn on the light and turn off AC for that sub-corridor.&lt;/p&gt;

&lt;p&gt;● Allowed Power Consumption (15 * Number of main corridors + 10 * Number of Sub Corridors) units per floor. If it is exceeding then turn off AC of Sub Corridors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Take initial inputs:&lt;/strong&gt;&lt;br&gt;
 &lt;strong&gt;&lt;em&gt;Number of Floors: 2&lt;br&gt;
 Main Corridors per floor: 4&lt;br&gt;
 Sub Corridors per floor: 2&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;External inputs from the sensor:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/abhi11210646/hotel-problem"&gt;https://github.com/abhi11210646/hotel-problem&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Tuples and Lists in python</title>
      <dc:creator>Abhishek singh</dc:creator>
      <pubDate>Thu, 28 Mar 2019 18:38:28 +0000</pubDate>
      <link>https://dev.to/abhi11210646/tuples-and-lists-in-python-56ik</link>
      <guid>https://dev.to/abhi11210646/tuples-and-lists-in-python-56ik</guid>
      <description>&lt;p&gt;&lt;a href="https://medium.com/@abhi11210646/tuples-and-lists-in-python-7bb8c9e26cb6"&gt;https://medium.com/@abhi11210646/tuples-and-lists-in-python-7bb8c9e26cb6&lt;/a&gt;&lt;/p&gt;

</description>
      <category>pythonlist</category>
      <category>tuple</category>
      <category>python3</category>
    </item>
  </channel>
</rss>
