<?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: Tushar  Borole</title>
    <description>The latest articles on DEV Community by Tushar  Borole (@tusharborole).</description>
    <link>https://dev.to/tusharborole</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%2F36098%2F9b845f49-e82b-47a2-9f5b-afb87e13f2a5.jpeg</url>
      <title>DEV Community: Tushar  Borole</title>
      <link>https://dev.to/tusharborole</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tusharborole"/>
    <language>en</language>
    <item>
      <title>One click deploy solution for docker-compose.yml?</title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Thu, 17 Oct 2019 20:49:41 +0000</pubDate>
      <link>https://dev.to/tusharborole/one-click-deploy-solution-for-docker-compose-yml-10nn</link>
      <guid>https://dev.to/tusharborole/one-click-deploy-solution-for-docker-compose-yml-10nn</guid>
      <description>&lt;p&gt;Is there one click deploy solution out there in the market (like heroku), if you want to deploy app having docker-compose.yml? I want to do it for &lt;a href="https://github.com/tushariscoolster/Telesto"&gt;https://github.com/tushariscoolster/Telesto&lt;/a&gt;&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>Scheduler Design Help Needed</title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Wed, 16 Oct 2019 04:28:29 +0000</pubDate>
      <link>https://dev.to/tusharborole/scheduler-design-help-needed-6fj</link>
      <guid>https://dev.to/tusharborole/scheduler-design-help-needed-6fj</guid>
      <description>&lt;p&gt;Basically I am designing a system, which can have thousand of cron jobs. I am creating a UI where one can create cron job, and specify the interval in it. What system design you will suggest making it scalable?&lt;/p&gt;

&lt;p&gt;More Details: My Question is in terms of the backend infrastructure. So I am going to use the package called npmjs.com/package/html-differ to compare two HTML. There will be a user interface where the user will define the webpage URL and interval time where webpage changes will be checked. Let's assume we have 10k URL to check with different time intervals. I wanted to have a recommendation about the database or queuing system like rabbitmq i should use to make it scalable and fault tolerance.&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>746. Min Cost Climbing Stairs</title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Sun, 29 Sep 2019 19:04:15 +0000</pubDate>
      <link>https://dev.to/tusharborole/746-min-cost-climbing-stairs-2ekm</link>
      <guid>https://dev.to/tusharborole/746-min-cost-climbing-stairs-2ekm</guid>
      <description>&lt;div class="highlight"&gt;&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="cm"&gt;/**
 * @param {number[]} cost
 * @return {number}
 */&lt;/span&gt;
&lt;span class="kd"&gt;var&lt;/span&gt; &lt;span class="nx"&gt;minCostClimbingStairs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kd"&gt;let&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;&lt;/span&gt; &lt;span class="nx"&gt;length&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;min&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;]);&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;

  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;min&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt; &lt;span class="nx"&gt;cost&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;length&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;]);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="nx"&gt;minCostClimbingStairs&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;15&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;]);&lt;/span&gt; &lt;span class="c1"&gt;//?&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Leetcode Javascript Solution</title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Wed, 03 Jul 2019 05:59:17 +0000</pubDate>
      <link>https://dev.to/tusharborole/leetcode-javascript-solution-dce</link>
      <guid>https://dev.to/tusharborole/leetcode-javascript-solution-dce</guid>
      <description>&lt;p&gt;My Leetcode javascript solution&lt;/p&gt;

&lt;p&gt;&lt;a href="https://tushariscoolster.github.io/leetcode-javascript/"&gt;https://tushariscoolster.github.io/leetcode-javascript/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/tushariscoolster/leetcode-javascript"&gt;https://github.com/tushariscoolster/leetcode-javascript&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Dope open source stacks.</title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Thu, 02 May 2019 16:51:40 +0000</pubDate>
      <link>https://dev.to/tusharborole/dope-open-source-stacks-4h0c</link>
      <guid>https://dev.to/tusharborole/dope-open-source-stacks-4h0c</guid>
      <description>&lt;p&gt;Are you open source stack hunter like me or just want to know what are trending open source stack out there. I have created a repo which has dope open source stack list based on company who started that project. &lt;br&gt;
Feel free to fork and add any interesting and dope stack you know out there on the web.&lt;br&gt;
&lt;a href="https://github.com/tushariscoolster/dope-stacks"&gt;https://github.com/tushariscoolster/dope-stacks&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>githunt</category>
      <category>startup</category>
    </item>
    <item>
      <title>Background task requirement? </title>
      <dc:creator>Tushar  Borole</dc:creator>
      <pubDate>Thu, 04 Oct 2018 04:06:58 +0000</pubDate>
      <link>https://dev.to/tusharborole/background-task-requirement--dah</link>
      <guid>https://dev.to/tusharborole/background-task-requirement--dah</guid>
      <description>&lt;p&gt;I have a requirement where I need to execute the shell script background. For example, The user will click on the button in the browser, this action will invoke a shell script, as soon as this shell script gets executed, there should be asynchronous message notified to the user in javascript. How can I do that?&lt;/p&gt;

</description>
      <category>question</category>
      <category>asynchronous</category>
      <category>background</category>
    </item>
  </channel>
</rss>
