<?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: Rushan S J</title>
    <description>The latest articles on DEV Community by Rushan S J (@rushannotofficial).</description>
    <link>https://dev.to/rushannotofficial</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%2F398335%2F92f81af3-aeaa-44d3-a50b-ab629e6a1ba6.jpg</url>
      <title>DEV Community: Rushan S J</title>
      <link>https://dev.to/rushannotofficial</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rushannotofficial"/>
    <language>en</language>
    <item>
      <title>Translation Helper</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Tue, 07 Dec 2021 15:35:52 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/translation-helper-679</link>
      <guid>https://dev.to/rushannotofficial/translation-helper-679</guid>
      <description>&lt;p&gt;Hey there ! For the the #ActionsHackathon21 I created something... &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Translation Helper&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  My Workflow
&lt;/h3&gt;

&lt;p&gt;Please see the official Translation Helper repository for the latest instructions on using translation-helper!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/RushanNotOfficial/translation-helper/"&gt;My Project&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Submission Category:
&lt;/h3&gt;

&lt;p&gt;Wacky Wildcard&lt;/p&gt;

&lt;h3&gt;
  
  
  Link to Code
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/RushanNotOfficial/translation-helper"&gt;https://github.com/RushanNotOfficial/translation-helper&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Please comment down below if it's proper cuz I'm a first timer to such stuff.&lt;/p&gt;

</description>
      <category>actionshackathon21</category>
    </item>
    <item>
      <title>Single Folder Git clone?</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Sun, 31 Oct 2021 06:58:11 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/single-folder-git-clone-21ld</link>
      <guid>https://dev.to/rushannotofficial/single-folder-git-clone-21ld</guid>
      <description>&lt;p&gt;How do you clone a single folder from a repo?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;code&gt;git clone --no-checkout &amp;lt;link&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cd &amp;lt;cloned folder&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git sparse-checkout init --cone&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git sparse-checkout set &amp;lt;Folder Name&amp;gt;/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git checkout&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Voilà !&lt;/p&gt;

</description>
      <category>git</category>
      <category>inthirtyseconds</category>
    </item>
    <item>
      <title>Developer Profile Packages - Why and Why not</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Sun, 31 Oct 2021 06:14:49 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/developer-profile-packages-why-and-why-not-49lj</link>
      <guid>https://dev.to/rushannotofficial/developer-profile-packages-why-and-why-not-49lj</guid>
      <description>&lt;p&gt;Maybe you've heard.... or maybe not ? &lt;/p&gt;

&lt;p&gt;I just realized a thing. &lt;br&gt;
You can make your profile as a package. And not just a package, a dev profile on pypi (pip) or npm. Virtually any package manager. &lt;/p&gt;

&lt;p&gt;By making a cli app in python (pip), .NET (nuget) or node (npm), and globalizing it, you can make your app spit out information about you when its called. &lt;/p&gt;

&lt;h3&gt;
  
  
  Why
&lt;/h3&gt;

&lt;p&gt;Well, its just a cool and creative way to show people your dev profile. &lt;/p&gt;

&lt;h3&gt;
  
  
  Why not
&lt;/h3&gt;

&lt;p&gt;Some times, It just isn't cool. If you make a package with the name as a username that's related to a actual package, you're in trouble. For example, there is this package called pyplot in python but to install it, you would run &lt;code&gt;pip install plot&lt;/code&gt; and not 'pip install pyplot'. Any new developer who wants to just download code and run would find it tough when the error says to install pyplot. Naturally, the developer would run &lt;code&gt;pip install pyplot&lt;/code&gt; and then, you someone made a dev profile package called pyplot (might be their username?), the new dev would get further confused when the code doesn't work. &lt;/p&gt;

&lt;h3&gt;
  
  
  Workaround
&lt;/h3&gt;

&lt;p&gt;You could perhaps name your package as &lt;strong&gt;profile-pyplot&lt;/strong&gt; instead of &lt;strong&gt;pyplot&lt;/strong&gt; which doesn't confuse people but some (bad?) developers would not listen to this and continue confusing people. &lt;/p&gt;

&lt;p&gt;"&lt;em&gt;With great power, comes great responsibility&lt;/em&gt;"&lt;br&gt;
                 - A nice developer.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>powerfuldevs</category>
    </item>
    <item>
      <title>Hacktoberfest 2021 - How it went for me</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Sat, 30 Oct 2021 15:41:46 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/hacktoberfest-2021-how-it-went-for-me-21cg</link>
      <guid>https://dev.to/rushannotofficial/hacktoberfest-2021-how-it-went-for-me-21cg</guid>
      <description>&lt;h3&gt;
  
  
  Who am I and why did I participate
&lt;/h3&gt;

&lt;p&gt;I joined Dev.to to read blogs, post blogs and learn new things. I mainly wanted to join hacktoberfest because I really wanted to plant a tree. #TeamTrees&lt;/p&gt;

&lt;h3&gt;
  
  
  Background
&lt;/h3&gt;

&lt;p&gt;I was just a average kid in school about a year ago. Now, I learnt that coding gives me happiness and is a really good excuse for coffee too. &lt;/p&gt;

&lt;h3&gt;
  
  
  Progress
&lt;/h3&gt;

&lt;p&gt;My progress went a lil' terrible. I had my exams so, I was always studying. Then, on 27th and 28th there was Github universe which I had enrolled in. I had to attend so many sessions that I didn't get sleep at all. Then, on 29th and 30th, also I was awake the whole night. &lt;/p&gt;

&lt;h3&gt;
  
  
  Contributions
&lt;/h3&gt;

&lt;p&gt;I contributed to 5 repos. 2 were related to blockchain, 2 were related to web design and the last one was a list of things todo list.&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
    </item>
    <item>
      <title>A dev new word - 
    Condensing</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Wed, 27 Oct 2021 08:41:51 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/a-dev-new-word-condensing-5hln</link>
      <guid>https://dev.to/rushannotofficial/a-dev-new-word-condensing-5hln</guid>
      <description>&lt;p&gt;Hmm..., You already know what is condensing? Maybe not. You might have heard about pickling which is converting an object in a character stream. This character stream can be used to reconstruct the object and the object retains its properties.&lt;br&gt;
I made a word just like it !&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4&gt;
  
  
  Origins:
&lt;/h4&gt;

&lt;p&gt;There isn't a word for some stuff so, I made one. &lt;br&gt;
I thought about it while writing my exams. (I'm in 9th grade)&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4&gt;
  
  
  Meaning:
&lt;/h4&gt;

&lt;p&gt;Ok, let's imagine that we have a web server which renders a web page about blogs. When a user posts a blog, we save the content to a file and then render all blogs written so far in a page. The process of getting content and saving it to a file is called (&lt;strong&gt;Drum roll&lt;/strong&gt;) &lt;em&gt;Condensation&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;h6&gt;
  
  
  Q. Why did I choose condensation ?
&lt;/h6&gt;

&lt;p&gt;A. When water vapour (in our case, raw data),&lt;br&gt;
  condenses in liquid water (ordered data in &lt;br&gt;
      a file) is called CONDENSATION. 🤣&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  How would you use this word ?
&lt;/h4&gt;

&lt;p&gt;Examples are: &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;I built a micro service to &lt;em&gt;condense&lt;/em&gt; the 
 users data.&lt;/li&gt;
&lt;li&gt;Let's process the condensed data
&lt;p&gt; &lt;/p&gt;
&lt;em&gt;NOTE: Condensing doesn't mean to write data to a file. It simply means to get data from a remote/non-local system. (In our case, a web server hosted on &lt;a href="https://aws.amazon.com/"&gt;Amazon Web Services&lt;/a&gt;)&lt;/em&gt; &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Btw, you're free to use this word anywhere. No Copyrights. 😅&lt;/p&gt;

&lt;p&gt;What do y'all think about this post? Lemme know in the comments. Bye&lt;/p&gt;

</description>
      <category>news</category>
      <category>programming</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Coffee - A Dev's  Heaven</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Wed, 17 Mar 2021 12:07:56 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/coffee-a-dev-s-heaven-egb</link>
      <guid>https://dev.to/rushannotofficial/coffee-a-dev-s-heaven-egb</guid>
      <description>&lt;p&gt;Comment down why coffee is good for you ?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A bad day with coffee is always better than a good day without it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you searched for the words programmer or web developer on Google images a few years ago, you will be flooded with pictures of hackers with hoodie working in the dark on the matrix-style screen, &lt;/p&gt;

&lt;p&gt;In the last few years, thanks to a lot more freelancing and remote working, the idea of programmers in the world has changed radically.&lt;/p&gt;

&lt;p&gt;A treat in common among the majority of the picture online and the image that people imagine when thinking of coder in a bit more indie now.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It almost always includes an Apple Mac, a pair of earphones and a cup of coffee.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;(No offense to the non-mac folk.)&lt;/p&gt;

&lt;p&gt;Usually in a day, coders/programmer/devs drink about &lt;br&gt;
2-4 cups of coffee. For those who are just starting out, it doesn't mean that drinking coffee is essential if you want to become a good developer.&lt;/p&gt;

&lt;h4&gt;
  
  
  It makes you smarter and more energetic
&lt;/h4&gt;

&lt;p&gt;This doesn't mean that you'll have your brain preserved in a museum or hit 200 on your next IQ test but, coffee allows you to focus and ofcourse, makes you smarter. It has been scientifically proven that when caffeine travels to the brain through blood circulation, it blocks an inhibitory neurotransmitter called Adenosine. When this happens, there is enough room for other neurotransmitters like dopamine and norepinephrine to increase. This leads to enhanced firing of neurons.&lt;/p&gt;

&lt;h4&gt;
  
  
  It just makes you happy
&lt;/h4&gt;

&lt;p&gt;This is another thing that caffeine is not the culprit of. The National Institute of Health has found that people who consume coffee are less likely to be depressed by ten percent. As I said, this is not because of caffeine as coke also contains high amounts of caffeine yet it’s linked to depression. Scientists believe that this benefit of coffee comes from the antioxidants it contains.&lt;/p&gt;

&lt;h2&gt;
  
  
  Okay, enough talk about that, let's discuss about the actual brewing of coffee
&lt;/h2&gt;

&lt;p&gt;There are many different ways of brewing your coffee.&lt;br&gt;
For example, you could choose the smooth and delicate tasting coffee (arabica) or the bitter (robusta). &lt;br&gt;
&lt;strong&gt;Arabica&lt;/strong&gt; is good for the usual coding but when you're working late night on a thousand line (maybe hundred ? but the point is that you're way past your bedtime) program, it's better to choose &lt;strong&gt;Robusta&lt;/strong&gt; because, it's bitter flavor combined with the high levels of caffine helps you feel less tired and keeps you awake for longer. (Please don't drink it before you goto bed) &lt;/p&gt;

&lt;p&gt;Also, the roasting of the coffee matters.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The different level of roast does not determine the amount of caffeine on it but each roast has a different flavor.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;They go from a light roast (also called ‘half city’) to a darker roast, almost black, called ‘coal’.&lt;/p&gt;

&lt;p&gt;During the roasting phase is when the coffee maker adds flavors to the mix, you can find coffee with dried fruit, vanilla, and chocolate to name a few.&lt;/p&gt;

&lt;p&gt;The secret is in the water. The quality of your coffee will be as good as the quality of your water, period.&lt;br&gt;
It is advised to use filtered or mineral water and use the when the temperature is just under the boiling point (90°C or 200°F).&lt;/p&gt;

&lt;p&gt;Usually people drink black coffee but this can burnt your oesophagus and can cause cancer. As a developer, adding milk is a good idea as it lowers the temperature of the coffee and you don't have to wait for your coffee to come down to a drinkable temperature. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wXVlTXat--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lj99bo9ujtuybgdbrm2e.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wXVlTXat--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lj99bo9ujtuybgdbrm2e.jpeg" alt="Types of coffee"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you made it till here, great job.&lt;/strong&gt;&lt;/p&gt;

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

</description>
      <category>coffee</category>
      <category>developers</category>
      <category>programming</category>
    </item>
    <item>
      <title>The night owl's guide to 6 am</title>
      <dc:creator>Rushan S J</dc:creator>
      <pubDate>Sun, 10 Jan 2021 07:36:57 +0000</pubDate>
      <link>https://dev.to/rushannotofficial/the-night-owl-s-guide-to-6-am-14p7</link>
      <guid>https://dev.to/rushannotofficial/the-night-owl-s-guide-to-6-am-14p7</guid>
      <description>&lt;p&gt;So, you chose to be awake the whole night... It's not gonna be easy.&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 1
&lt;/h1&gt;

&lt;p&gt;Get some sleep before pulling an all-nighter. If you don't get enough sleep, you're gonna sleep before you know it. You need to give your &lt;strong&gt;brain&lt;/strong&gt; enough rest.&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 2
&lt;/h1&gt;

&lt;p&gt;Ok... It's 11 pm. If you have an important job to do tomorrow then, you should probably goto sleep. Maybe you still want to stay awake? &lt;br&gt;
You can trick your &lt;strong&gt;brain&lt;/strong&gt; to stay awake but turning on the light and drinking lots of water. So now, you're basically a plant (&lt;em&gt;maybe?&lt;/em&gt;).  If you really tired but still don't wanna sleep, get some coffee. &lt;/p&gt;

&lt;h1&gt;
  
  
  Step 3
&lt;/h1&gt;

&lt;p&gt;It's 1:00 am in the morning. You're soooooo tired that you can barely function. It's good idea to take a power nap for about 15 minutes. Just don't sleep for more that 30 minutes cuz you're probably gonna wake up at 11 am in the morning. This is you're final chance to sleep. If you goto sleep after 1:30, you will wake up pretty late and end up missing your office/school (I go to school). &lt;/p&gt;

&lt;h1&gt;
  
  
  Step 4
&lt;/h1&gt;

&lt;p&gt;At 3 am in the morning you should get up from your bed and maybe do some jumping jacks and pushups. (Just don't make a lot of noise if you are illegally pulling an all-nighter. If you get busted, don't blame me 😂).&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 5
&lt;/h1&gt;

&lt;p&gt;It's 4 am and I am giving you an out-of-out (💯). Just don't close your eyes to imagine yourself doing heroic things or you will end up going to sleep. But most importantly &lt;strong&gt;Just stay A-W-A-K-E !&lt;/strong&gt;.&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 6
&lt;/h1&gt;

&lt;p&gt;Now it's 6 am (See what I did here😁). Start doing something to keep you busy and get yourself a cup of coffee (Or maybe 3 ?? 😆)&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 7
&lt;/h1&gt;

&lt;p&gt;Yaaaaaaas,  it's finally 7 in the morning. Brag to your friends that you stayed up the whole night😎. Just don't stay awake for more than 2 days in a row. (Believe me, I've tried it. Tis too dangerous).&lt;/p&gt;

&lt;p&gt;You reached the end of this article. Well done ! &lt;/p&gt;

&lt;h3&gt;
  
  
  Share this article to make my day.
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;"Just stay awake the whole night" - inspired by me, written by me.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>night</category>
      <category>awakethewholenight</category>
      <category>guide</category>
    </item>
  </channel>
</rss>
