<?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: Dharaneedhar Reddy</title>
    <description>The latest articles on DEV Community by Dharaneedhar Reddy (@dharaneedhar828).</description>
    <link>https://dev.to/dharaneedhar828</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%2F627607%2F98ab9138-724f-4d2d-b2e9-6120a0307474.png</url>
      <title>DEV Community: Dharaneedhar Reddy</title>
      <link>https://dev.to/dharaneedhar828</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dharaneedhar828"/>
    <language>en</language>
    <item>
      <title>Special Product Array

</title>
      <dc:creator>Dharaneedhar Reddy</dc:creator>
      <pubDate>Sun, 24 Oct 2021 09:30:47 +0000</pubDate>
      <link>https://dev.to/dharaneedhar828/special-product-array-3k9a</link>
      <guid>https://dev.to/dharaneedhar828/special-product-array-3k9a</guid>
      <description>&lt;p&gt;Special product array&lt;br&gt;
python3&lt;br&gt;
array&lt;br&gt;
To find a product of elements of an array we need to create an empty variable and initialize it with 1 .In a loop to get each element from user we need to multiply each element to product and print the product.&lt;br&gt;
Example: Given a list of integers nums, return a new list such that each element at index i of the new list is the product of all the numbers in the original list except the one at i.&lt;br&gt;
CONSTRAINTS:2 ≤ n ≤ 100,000 where n is the length of nums&lt;/p&gt;

&lt;p&gt;When we give test case as input nums = [1, 2, 3, 4, 5]&lt;br&gt;
we get output as [120, 60, 40, 30, 24]&lt;br&gt;
explanation: 120 = 2 * 3 * 4 * 5 , 60 = 1 * 3 * 4 * 5 ,40=4 * 5 * 1 * 2 , 30=1 * 2 * 3 * 5 ,24=1 * 2 * 3 * 4&lt;/p&gt;

</description>
    </item>
    <item>
      <title>FUSE</title>
      <dc:creator>Dharaneedhar Reddy</dc:creator>
      <pubDate>Sat, 08 May 2021 06:44:14 +0000</pubDate>
      <link>https://dev.to/dharaneedhar828/fuse-4lpc</link>
      <guid>https://dev.to/dharaneedhar828/fuse-4lpc</guid>
      <description>&lt;p&gt;&lt;strong&gt;Filesystem in Userspace (FUSE)&lt;/strong&gt; is a loadable Unix kernel module that allows non-privileged users to create their file systems without editing the kernel code. The code of these file systems is run on userspace programs – FUSE helps them link to the kernel interface.&lt;br&gt;
FUSE is available on several operating systems, including Linux, macOS, and Android.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1R2py9RV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a069wnyzzgo6mq6ztqz4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1R2py9RV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a069wnyzzgo6mq6ztqz4.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
FUSE is built on two main components: the fuse kernel module and the libfuse userspace library. The libfuse &lt;strong&gt;library&lt;/strong&gt; provides functionality to mount and unmount file systems.&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NbbS22Pa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wrxu97eni3rtan3fhrcy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NbbS22Pa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wrxu97eni3rtan3fhrcy.png" alt="Alt Text"&gt;&lt;/a&gt; It also enables reading and responding to kernel requests.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--q7MR5PT1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t7r36eobi2w5leaup245.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--q7MR5PT1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t7r36eobi2w5leaup245.gif" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>fuse</category>
      <category>filesystem</category>
      <category>operatingsystem</category>
      <category>unix</category>
    </item>
  </channel>
</rss>
