<?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: Rohithaditya </title>
    <description>The latest articles on DEV Community by Rohithaditya  (@rohithaditya).</description>
    <link>https://dev.to/rohithaditya</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%2F734895%2F692f26f6-a746-470a-a43b-78628332f98a.png</url>
      <title>DEV Community: Rohithaditya </title>
      <link>https://dev.to/rohithaditya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rohithaditya"/>
    <language>en</language>
    <item>
      <title>Create Windows Loader Using CSS</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Thu, 10 Feb 2022 12:50:39 +0000</pubDate>
      <link>https://dev.to/rohithaditya/create-windows-loader-using-css-3djp</link>
      <guid>https://dev.to/rohithaditya/create-windows-loader-using-css-3djp</guid>
      <description>&lt;p&gt;Do You Love windows Loading Animation? If Yes Then its for you!&lt;/p&gt;

&lt;p&gt;HTML CODE:&lt;br&gt;
&lt;code&gt;&amp;lt;div class="container"&amp;gt;&lt;br&gt;
  &amp;lt;div class="loader-wrapper"&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;div class="loader"&amp;gt;&lt;br&gt;
      &amp;lt;div class="dot"&amp;gt;&amp;lt;/div&amp;gt;&lt;br&gt;
    &amp;lt;/div&amp;gt;&lt;br&gt;
  &amp;lt;/div&amp;gt;&lt;br&gt;
  &amp;lt;div class="bot"&amp;gt;&lt;br&gt;
    &amp;lt;br&amp;gt;&lt;br&gt;
    Loading&lt;br&gt;
  &amp;lt;/div&amp;gt;&lt;br&gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The Following Are CSS CODE:&lt;br&gt;
`body{&lt;br&gt;
  margin:0;&lt;br&gt;
  display:grid;&lt;br&gt;
  place-items:center;&lt;br&gt;
  height:100vh;&lt;br&gt;
  background-color:#00a2ed;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.container{&lt;br&gt;
  width:80px;&lt;br&gt;
  height:80px;&lt;br&gt;
  display:grid;&lt;br&gt;
  place-items:center;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader-wrapper{&lt;br&gt;
  width:80px;&lt;br&gt;
  height:80px;&lt;br&gt;
  position:absolute;&lt;br&gt;
  display:flex;&lt;br&gt;
  justify-content:center;&lt;br&gt;
  align-items:center;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader{&lt;br&gt;
  position:absolute;&lt;br&gt;
  height:20px;&lt;br&gt;
  animation: spin 3.5s linear infinite;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader .dot{&lt;br&gt;
  width:6px;&lt;br&gt;
  height:6px;&lt;br&gt;
  background-color:#fff;&lt;br&gt;
  border-radius:50%;&lt;br&gt;
  position:relative;&lt;br&gt;
  top:30px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;@keyframes spin{&lt;br&gt;
  30%{&lt;br&gt;
    transform:rotate(220deg);&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;40%{&lt;br&gt;
    opacity:1;&lt;br&gt;
    transform:rotate(450deg);&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;75%{&lt;br&gt;
    opacity:1;&lt;br&gt;
    transform:rotate(720deg);&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;76%{&lt;br&gt;
    opacity:0;&lt;br&gt;
  }&lt;/p&gt;

&lt;p&gt;100%{&lt;br&gt;
    opacity:0;&lt;br&gt;
    transform:rotate(0deg);&lt;br&gt;
  }&lt;/p&gt;

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

&lt;p&gt;.loader:first-child{&lt;br&gt;
  animation-delay:0.15s;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader:nth-child(2){&lt;br&gt;
  animation-delay:0.3s;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader:nth-child(3){&lt;br&gt;
  animation-delay:0.45s;&lt;br&gt;
}&lt;br&gt;
.loader:nth-child(4){&lt;br&gt;
  animation-delay:0.6s;&lt;br&gt;
}&lt;br&gt;
.loader:nth-child(5){&lt;br&gt;
  animation-delay:0.75s;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.loader:last-child{&lt;br&gt;
  animation-delay:0.9s;&lt;br&gt;
}&lt;br&gt;
.bot{&lt;br&gt;
  display:flex;&lt;br&gt;
  margin-top:90%;&lt;br&gt;
  color:white;&lt;br&gt;
  font-size:20px;&lt;br&gt;
  font-family:Raleway;&lt;br&gt;
}`&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;For Demo :&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fD2D1jBT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k6nynlbjtcczz6oo1rf5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fD2D1jBT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k6nynlbjtcczz6oo1rf5.png" alt="Small Snap Of Working Code!" width="880" height="340"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nf9yXS60--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pszv4luabhmyvzxg152k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nf9yXS60--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pszv4luabhmyvzxg152k.png" alt="Small Snap Of Working Code" width="880" height="325"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5phx13AR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8kiphdxeug9lh9hoac45.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5phx13AR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8kiphdxeug9lh9hoac45.png" alt="Small Snap Of Working Code" width="880" height="318"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>css</category>
      <category>windows</category>
      <category>html</category>
      <category>rohithaditya</category>
    </item>
    <item>
      <title>Aniko An Open Source</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Fri, 04 Feb 2022 02:27:37 +0000</pubDate>
      <link>https://dev.to/rohithaditya/aniko-an-open-source-118o</link>
      <guid>https://dev.to/rohithaditya/aniko-an-open-source-118o</guid>
      <description>&lt;p&gt;Introducing Aniko As Open Source&lt;/p&gt;

&lt;p&gt;Excellent, Powerful Anime SEARCHER with Many Features.. &lt;/p&gt;

&lt;p&gt;~ Easy To Host&lt;br&gt;
~ Many Options..&lt;br&gt;
~ Customizable&lt;br&gt;
~ Open Source&lt;/p&gt;

&lt;p&gt;Now You Are Allowed Only TO Star And Fork and Deploy&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Read Readme For Deploy instructions..&lt;br&gt;
URL:&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://github.com/Rohith-sreedharan/Aniko/"&gt;https://github.com/Rohith-sreedharan/Aniko/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Our Channel Has Only 1k Subs...&lt;br&gt;
I Hope We will soon Reach 1.5k&lt;/p&gt;

&lt;p&gt;Till Then Cya&lt;/p&gt;

&lt;p&gt;Blushes&lt;br&gt;
Subscribe&lt;br&gt;
Cheers 🥂&lt;/p&gt;

&lt;p&gt;(C) @SPRINGREENOFF&lt;/p&gt;

</description>
      <category>anime</category>
      <category>opensource</category>
      <category>python</category>
      <category>pypi</category>
    </item>
    <item>
      <title>Quote Of The Day...</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Mon, 31 Jan 2022 07:14:18 +0000</pubDate>
      <link>https://dev.to/rohithaditya/quote-of-the-day-46hb</link>
      <guid>https://dev.to/rohithaditya/quote-of-the-day-46hb</guid>
      <description>&lt;p&gt;“The computer programmer is a creator of universes for which he alone is the lawgiver. No playwright, no stage director, no emperor, however powerful, has ever exercised such absolute authority to arrange a stage or field of battle and to command such unswerving dutiful actors or troops.”&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;– Joseph Weizenbaum
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Best Python Projects That You Can Finish In A Min!</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Thu, 27 Jan 2022 09:16:11 +0000</pubDate>
      <link>https://dev.to/rohithaditya/best-python-projects-that-you-can-finish-in-a-min-1kpj</link>
      <guid>https://dev.to/rohithaditya/best-python-projects-that-you-can-finish-in-a-min-1kpj</guid>
      <description>&lt;ol&gt;
&lt;li&gt;
&lt;em&gt;Take A Break Reminder App&lt;/em&gt;
&lt;strong&gt;Codes&lt;/strong&gt;:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import time
   from plyer import notificationif __name__ ==    "__main__":
   while True:
        notification.notify(
            title = "ALERT!!!",
            message = "Take a break! It has been an hour!\nCode By @rohithaditya ",
            timeout = 10
        )
        time.sleep(3600)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Quadratic Equation Solver:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import math
print('Welcome!...)

a = input("Enter the first number a: ")
b = input("Enter the second number b: ")
c = input("Enter the third number c: ")
y = int(b) * int(b) - 4 *int(a)*int(c)
if y == 0:
    e = - int(b)/2*int(a)
    print()
    print("The result: ",e)
elif y &amp;gt;= 0:
    rt = (-int(b) - math.sqrt(D))/2*int(a)
    rt2= (-int(b) + math.sqrt(D))/2*int(a)
    print("The first result: ", rt)
    print("The second result: ", rt2)
else:
    print("The equation has no solution!")
print("I'm glad my help touched")
print("This Program Done By @rohithaditya ")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Hello World Program
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print('Hello World\nAnd Bye!')
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>python</category>
      <category>beginners</category>
      <category>simple</category>
    </item>
    <item>
      <title>Tell Me What You Learnt? From 11/01/22 To 18/01/22</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Tue, 18 Jan 2022 05:28:13 +0000</pubDate>
      <link>https://dev.to/rohithaditya/tell-me-what-you-learnt-from-110122-to-180122-4hk6</link>
      <guid>https://dev.to/rohithaditya/tell-me-what-you-learnt-from-110122-to-180122-4hk6</guid>
      <description>&lt;p&gt;I learnt React During This Week..............&lt;br&gt;
What About You?&lt;/p&gt;

</description>
      <category>programming</category>
      <category>react</category>
      <category>learning</category>
    </item>
    <item>
      <title>Why Python?</title>
      <dc:creator>Rohithaditya </dc:creator>
      <pubDate>Sun, 26 Dec 2021 04:39:41 +0000</pubDate>
      <link>https://dev.to/rohithaditya/why-python-5h9o</link>
      <guid>https://dev.to/rohithaditya/why-python-5h9o</guid>
      <description>&lt;p&gt;&lt;strong&gt;By&lt;/strong&gt; the reference of to the latest &lt;strong&gt;TIOBE Programming Community Index,&lt;/strong&gt; &lt;em&gt;Python is one of the top 10 popular programming languages of 2017.&lt;/em&gt; Python is a general purpose and high level programming language. You can use Python for developing desktop GUI applications, websites and web applications. Also, Python, as a high level programming language, allows you to focus on core functionality of the application by taking care of common programming tasks. The simple syntax rules of the programming language further makes it easier for you to keep the code base readable and application maintainable. There are also a number of reasons why you should prefer Python to other programming languages.&lt;/p&gt;

&lt;p&gt;1) Readable and Maintainable Code&lt;br&gt;
2) Multiple Programming Paradigms&lt;br&gt;
3) Compatible with Major Platforms and Systems&lt;br&gt;
4) Robust Standard Library&lt;br&gt;
5) Many Open Source Frameworks and Tools&lt;br&gt;
6) Simplify Complex Software Development&lt;br&gt;
7) Adopt Test Driven Development&lt;/p&gt;

&lt;p&gt;So To Get Started And Know Most Of The Tricks You Can See My YouTube Channel For It. &lt;br&gt;
My YouTube Channel Link - &lt;a href="https://www.youtube.com/channel/UCTE0nnqFTe6uQqiJmJribXw"&gt;https://www.youtube.com/channel/UCTE0nnqFTe6uQqiJmJribXw&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;user = input('Whats your Name? and haven't you follow me on GitHub yet?')
print('Hello {user}')
print('Do not Forget To Subscribe Me')
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>javascript</category>
      <category>python</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
