<?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: Satwik Gawand 🦄</title>
    <description>The latest articles on DEV Community by Satwik Gawand 🦄 (@satwikgawand).</description>
    <link>https://dev.to/satwikgawand</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%2F509473%2F6c5e3ace-2189-4767-9362-40babcf2de44.jpg</url>
      <title>DEV Community: Satwik Gawand 🦄</title>
      <link>https://dev.to/satwikgawand</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/satwikgawand"/>
    <language>en</language>
    <item>
      <title>Python File Headers</title>
      <dc:creator>Satwik Gawand 🦄</dc:creator>
      <pubDate>Wed, 18 Jan 2023 07:14:41 +0000</pubDate>
      <link>https://dev.to/satwikgawand/python-file-headers-19om</link>
      <guid>https://dev.to/satwikgawand/python-file-headers-19om</guid>
      <description>&lt;p&gt;There are many resources that teach you how to write code, but when it comes to writing clean and readable code, many beginners are unaware of the principles and techniques. In this article we'll explore how to write Python headers, one of many things that can level up the readability of your code.&lt;/p&gt;




&lt;h2&gt;
  
  
  What are Python Headers?
&lt;/h2&gt;

&lt;p&gt;In general, file headers are blocks of information - often positioned at the top of the file - that contain metadata about the file and its content.&lt;/p&gt;

&lt;p&gt;Similar to this, a Python Header consists of a shebang and a docstring present at the top of the file that provides more information about the file and the code present inside it.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why use Headers?
&lt;/h2&gt;

&lt;p&gt;As mentioned, headers provide metadata about the file that can help understand the context as well as track the changes in the file. It not only helps the readers, but the developers to get up to speed quickly with the context.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's a shebang?
&lt;/h2&gt;

&lt;p&gt;You might see something like &lt;code&gt;#! /user/bin/env python&lt;/code&gt; in Python scripts. The &lt;strong&gt;#!&lt;/strong&gt; is referred to as the shebang. It is Unix feature of executable scripts and specifies the path of a valid executable.&lt;/p&gt;

&lt;p&gt;You can specify the pathname to define a certain version of Python on the machine. Following are some examples&lt;/p&gt;

&lt;p&gt;&lt;code&gt;#! /usr/bin/env python&lt;/code&gt;&lt;br&gt;
executes any python executable present on the machine.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;#! /usr/bin/python&lt;/code&gt;&lt;br&gt;
used in cases when python is installed in the /usr/bin directory.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;#! /usr/bin/python2.7&lt;/code&gt;&lt;br&gt;
used in cases to execute a specified version of the python executable.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;#!python&lt;/code&gt;&lt;br&gt;
works only if the python executable is present in the current directory.&lt;/p&gt;


&lt;h2&gt;
  
  
  What other metadata should I add?
&lt;/h2&gt;

&lt;p&gt;Other than the shebang, there are a few more things you should add in your header.&lt;/p&gt;
&lt;h3&gt;
  
  
  Encoding
&lt;/h3&gt;

&lt;p&gt;You can specify the encoding for the scripts. UTF-8 is the most commonly used encoding. Here's how you do it&lt;br&gt;
&lt;code&gt;-*-coding: utf-8 -*-&lt;/code&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  Docstrings
&lt;/h3&gt;

&lt;p&gt;Docstrings are usually used to provide documentation or explanation about the important pieces of code. Explain the type of expected input values and what the piece of code does (usually functions).&lt;/p&gt;

&lt;p&gt;You start with a short description about the file followed by the descriptions for the functions.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;NOTE: Your code must only start after the docstring, else it won't be recognized.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  Dunders
&lt;/h3&gt;

&lt;p&gt;You can then add information about the author and other relevant information for the file using the following&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;__author__ = "Author Name"
__copyright__ = "Copyright Info"
__credits__ = ["Author", "Author"]
__license__ = "License Name and Info"
__version__ = "0.0.0"
__maintainer__ = "Author"
__email__ = "contact@email.com"
__status__ = "status of the file"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now, you are not limited to these, you can use some of them or add more information. The reason we write the info this way is to access it.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is a proper format?
&lt;/h2&gt;

&lt;p&gt;Although there is no hard-defined format you should use, here's a frequently used format. You don't have to use all the prompts mentioned here strictly, feel free to add and remove metadata according to your use case, but keep the format similar and information relevant.&lt;/p&gt;

&lt;p&gt;You can follow this format&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Shebang&lt;/li&gt;
&lt;li&gt;Encoding&lt;/li&gt;
&lt;li&gt;Docstring&lt;/li&gt;
&lt;li&gt;Dunders&lt;/li&gt;
&lt;li&gt;Imports&lt;/li&gt;
&lt;/ol&gt;




&lt;blockquote&gt;
&lt;p&gt;Code Snippet: &lt;a href="https://github.com/satwikgawand/python-things/blob/master/1-python-file-headers/script.py"&gt;code&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Python Things Repository: &lt;a href="https://github.com/satwikgawand/python-things"&gt;repo&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Footnote
&lt;/h2&gt;

&lt;p&gt;Hope you liked this small article and it helps you write better Python code. I plan fill this series with small articles about python concepts, tips, tricks, and tutorials.&lt;/p&gt;

&lt;p&gt;You can find me here:&lt;br&gt;
&lt;a href="https://twitter.com/satwikgawand"&gt;Twitter&lt;/a&gt;&lt;br&gt;
&lt;a href="https://satwikgawand.bio.link"&gt;Website&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
    <item>
      <title>ReDesign UI 001-005</title>
      <dc:creator>Satwik Gawand 🦄</dc:creator>
      <pubDate>Wed, 27 Jul 2022 05:50:31 +0000</pubDate>
      <link>https://dev.to/satwikgawand/redesign-ui-001-005-1ho7</link>
      <guid>https://dev.to/satwikgawand/redesign-ui-001-005-1ho7</guid>
      <description>&lt;p&gt;&lt;a href="https://www.figma.com/community/file/1096442475344229654/ReDesign-UI-001-005"&gt;View the design files on Figma Community&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  001 - Monitoring Dashboard by SunnyUIbegin
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://twitter.com/SunnyUIbegin/status/1514090923239813124?t=1GYdGRMnniBPBw2fd0o3Jw&amp;amp;s=19"&gt;Original Tweet by SunnyUIbegin&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Feedback
&lt;/h3&gt;

&lt;p&gt;Congratulations on starting out your design journey. I like the idea behind the design as well as the colours you’ve selected. I have a few suggestions that can help you improve this design. The first, and in my opinion, the biggest issue is with the spacing between all the elements. Having consistent spacing in your design can make it look much better instantly. Also, since the purple colour is your primary colour, you should use it to highlight the most important elements on that screen. You should also consider the contrast between the foreground and background colours. You can use some icon libraries to have consistency amongst your icons. You can also use outlined icons for your inactive menu items and use a filled icon for the active item, but I’d suggest using a different background colour to highlight the active page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2uCG4xhl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vr4m2upmp4igp89szqov.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2uCG4xhl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vr4m2upmp4igp89szqov.png" alt="The ReDesigned concept for Monitoring Dashboard" width="880" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Changes
&lt;/h3&gt;

&lt;p&gt;So, I decided to make an expanding sidebar over a slide-out one. The spacing is consistent now with 20px across the design. I changed the background colour for the containers to be neutral except for the sidebar which is still the primary colour. I changed the primary colour a bit as well to suit well with the background. There’s also a new highlighter that changes the background and foreground colour for the active page. The idea behind this design was to dynamically change the container sizes to accommodate the expanding sidebar. All the icons are from Remix Icons and the icons are separated into two sections, the top one has all the functionality whereas the settings and logout options are separated down below.&lt;/p&gt;




&lt;h2&gt;
  
  
  002 - To-Do List App by HatokUr0
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://twitter.com/HatokUr0/status/1514110653753360386?t=bfnmT6pEk8qcXshDe-D7sQ&amp;amp;s=19"&gt;Original Tweet by HatokUr0&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Feedback
&lt;/h3&gt;

&lt;p&gt;I really like how clean the design looks. However, the main issue I believe is that there are no different sections throughout the design, it’s all in one container. The header section only has the “Today” along with the day and the date, but ideally, you can add a menu to change some other settings. All the content seems to have a lot of left margin. The tasks seem too cramped together as well. Feel free to space them out a bit. the button to add a new task looks more like a display item rather than a button, and I believe you don’t have to add labels for completed and incomplete tasks. I’m not sure if they’re display items or buttons to filter out tasks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Dii3N2oD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kwikl0o0bccl75pan392.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Dii3N2oD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kwikl0o0bccl75pan392.png" alt="The ReDesigned concept for To-Do List App" width="880" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Changes
&lt;/h3&gt;

&lt;p&gt;The app is now divided into 3 prominent sections, the header, the tasks and the button to add new tasks. The margin is now reduced to 20px on both the left and the right sides. The header now has a menu icon along with the page title as well as the day and date. The font size is reduced for a cleaner look along with the colour for that text. The tasks are more spaced out with a light divider line separating them. The “Add New Task” button is now big and uses the primary colour to make it pop up and get some attention.&lt;/p&gt;




&lt;h2&gt;
  
  
  Customize Product Page by Radianceinspir1
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://twitter.com/Radianceinspir1/status/1514136536199147522?t=yHeWQl3V99BxfjUkLpwcOA&amp;amp;s=19"&gt;Original Tweet by Radianceinspir1&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Feedback
&lt;/h3&gt;

&lt;p&gt;Nice design. I really like the logo you’ve included in the design. I’d recommend not using dark backgrounds, especially for delicate and elegant objects like gold watches. Although the text looks readable in this screenshot, it might be too big when used in an actual design. I’d recommend you stick to a definitive font size rather than adjusting the size visually. There are guides on font sizes you can use for different screen sizes. You can arrange the colours section differently and make the colour selection circles bigger as well as highlight the currently selected colour. The same goes for the price and the “Add to Cart” button. You can arrange them in a different layout and make the button bigger.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--I1K4xYtE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/suaix11jd848p0e17iud.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--I1K4xYtE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/suaix11jd848p0e17iud.png" alt="The ReDesgined concept for Customize Product Page" width="880" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Changes
&lt;/h3&gt;

&lt;p&gt;The background is changed to pure white since many elegant products have it as the background. Changed the typefaces and colours to depict more elegance. The elements are spaced out and divided into 2 sections, the top section contains all the display elements where the users can read about the product and the bottom section where they can take actions like customizing and buying the product. The primary colour used on the page is somewhat of a golden yellow since the product or series of products is about golden watches. The selected colour is highlighted with a small stroke and the price as well as the button colour are changed to the primary colour.&lt;/p&gt;




&lt;h2&gt;
  
  
  004 - Signup Page by sayesystem
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://twitter.com/sayesystem/status/1514004956059258895?t=OypmTTDNOGYgRxYeV25VxA&amp;amp;s=19"&gt;Original Tweet by sayesystem&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Feedback
&lt;/h3&gt;

&lt;p&gt;I really liked the design, especially the background. It challenged me to design such a background from scratch and it was fun and something new for me. the only issues for me were the font colour and the buttons. The text could’ve been arranged better and the buttons made bigger and more prominent.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Uyzhs7Op--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7r1ywrzuqurdaiv3pokt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Uyzhs7Op--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7r1ywrzuqurdaiv3pokt.png" alt="The ReDesigned concept for Signup Page" width="880" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Changes
&lt;/h3&gt;

&lt;p&gt;I tried to recreate the background and it was something new for me, but a fun challenge. I’m kinda happy with the results. I couldn't find the typeface you used but used a different one I believed to fit perfectly for the use case. I also brought the tagline closer to the name and changed the colour for visual hierarchy. The buttons are bigger now and more prominent. The signup buttons are solid since that’s the primary CTA, but there’s also a secondary option to Login.&lt;/p&gt;




&lt;h2&gt;
  
  
  005 - Food Menu by Maaasry98
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://twitter.com/Maaasry98/status/1514036347564171270?t=eAaA01azkPbp2sNP7zb1DQ&amp;amp;s=19"&gt;Original Tweet by Maaasry98&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Feedback
&lt;/h3&gt;

&lt;p&gt;A very nice design. I like the colours. The spacing and layout of the product list seem perfect. There are only two major issues, one is the search bar and the other is the horizontal categories list. Be mindful of the top margin in your designs, you don’t want that overlapping anything. Be mindful of the notches and the punch holes that bring the content further down on the screen. The search bar doesn't follow the same layout and spacing as the rest of the design and seems too small. The horizontal categories list has the same issue where it doesn't follow the same arrangement as the rest of the design. What you can do for those is keep them left-aligned and allow horizontal scroll.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--K1j4CeCn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/inj0pzoeq1b4sgy1bik1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--K1j4CeCn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/inj0pzoeq1b4sgy1bik1.png" alt="The ReDesigned concept for Food Menu" width="880" height="660"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Changes
&lt;/h3&gt;

&lt;p&gt;Although there were only 3 things I wanted to change in the design, I had to recreate the rest of the design as well. It was fun. So, here are the changes I’ve made. The header has been brought down to adjust for the notch. The search bar is now bigger with 20px margins on the left and right sides and the height increased to 50px. The options in the categories sections are now aligned to the left to follow the same margins as the other elements. The divider below the categories section is increased to span the entire width of the screen to separate everything above and below the divider.&lt;/p&gt;




&lt;h3&gt;
  
  
  My Thoughts
&lt;/h3&gt;

&lt;p&gt;It was fun to start redesigning spree again. It's as much fun as it is a challenge and difficult. This article had some designs that needed minimal changes and some that needed a bit more. There are two new things I did, which are the expanding sidebar and the multi-colour background. It was something I never tried before, but it was fun for sure.&lt;/p&gt;

&lt;p&gt;If you'd like to get feedback on your designs, feel free to tag &lt;a href="https://twitter.com/satwikgawand"&gt;satwikgawand&lt;/a&gt; on any of your designs in your tweets. See you next week!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Unlock the True Potential of your To-Do Lists!</title>
      <dc:creator>Satwik Gawand 🦄</dc:creator>
      <pubDate>Tue, 26 Jul 2022 11:31:21 +0000</pubDate>
      <link>https://dev.to/satwikgawand/unlock-the-true-potential-of-your-to-do-lists-3mja</link>
      <guid>https://dev.to/satwikgawand/unlock-the-true-potential-of-your-to-do-lists-3mja</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Everyone uses To-Do Lists, but you either have too many tasks and feel overwhelmed or too few tasks which leave you confused and thinking up more tasks you can add to your list.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Everyone uses To-Do Lists, but many don’t know how to fully utilize them to boost your productivity.&lt;/p&gt;

&lt;p&gt;Before you move towards boosting your productivity, here’s a small thread to help you understand what Productivity exactly is.&lt;/p&gt;

&lt;p&gt;Read a Twitter thread about what Productivity is and why you should be productive here: &lt;a href="https://twitter.com/satwikgawand/status/1439880647904882693?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1439880647904882693%7Ctwgr%5E%7Ctwcon%5Es1_&amp;amp;ref_url=https%3A%2F%2Fcdn.embedly.com%2Fwidgets%2Fmedia.html%3Ftype%3Dtext2Fhtmlkey%3Da19fcc184b9711e1b4764040d3dc5c07schema%3Dtwitterurl%3Dhttps3A%2F%2Ftwitter.com%2Fsatwikgawand%2Fstatus%2F1439880647904882693image%3Dhttps3A%2F%2Fi.embed.ly%2F1%2Fimage3Furl3Dhttps253A252F252Fabs.twimg.com252Ferrors252Flogo46x38.png26key3Da19fcc184b9711e1b4764040d3dc5c07"&gt;Twitter Thread&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Framework
&lt;/h2&gt;

&lt;p&gt;Before we start anything, it’s always helpful to have a framework in place. It guides you through your project as well as makes decisions easier with a predefined set of rules.&lt;/p&gt;

&lt;p&gt;In our framework for a To-Do List, we’ll consider the following things (and there’s a bonus!):&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Ideal Number of Tasks&lt;/li&gt;
&lt;li&gt;Sorting Methods&lt;/li&gt;
&lt;li&gt;Time Management&lt;/li&gt;
&lt;li&gt;Tools&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Ideal Number of Tasks
&lt;/h2&gt;

&lt;p&gt;There’s no right answer for this, there’s no magical number that is perfect for your To-Do List, instead, you have to adjust it based on your lifestyle to optimize your productivity.&lt;/p&gt;

&lt;p&gt;Here’s a baseline to help you get started:&lt;br&gt;
3 - P1 Priority Tasks&lt;br&gt;
3 - P2 Priority Tasks&lt;br&gt;
5 - P3 Priority Tasks&lt;/p&gt;

&lt;h2&gt;
  
  
  Sorting Methods
&lt;/h2&gt;

&lt;p&gt;Many people sort their tasks based on importance, starting with the most important to the least important. Although it’s not wrong, there are better ways to accomplish your tasks.&lt;/p&gt;

&lt;p&gt;There are different kinds of tasks&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Some tasks take a lot of focus, thinking, problem-solving or decision-making capabilities like debugging in programming, preparing a concept for a design project, writing an article or making a very important decision for your startup.&lt;/li&gt;
&lt;li&gt;Others are more repetitive which don’t really need a lot of your attention like replying to emails, connecting on social media, etc.&lt;/li&gt;
&lt;li&gt;There are also tasks that are personal and don’t exactly fit into your professional life like doing chores, reading and watching educational/informative videos that you love to watch.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The kind of tasks differs for everyone, try to categorize your tasks. However, there’s one thing that must be common throughout all your tasks…&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Every task must contribute towards three things, Your Goal, Personal Development, or Family. If it doesn’t do that, you probably don’t need to do that task.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Yes, doing chores or things like buying groceries, etc. count towards Personal Development and Family.&lt;/p&gt;

&lt;p&gt;Everyone has a specific time period in a day when they feel most productive or focused. Some can focus early morning while their mind is fresh while others stay up late which makes them more focused because of the silence in their surrounding. Identifying that time period can have a significant impact on your efficiency, and in turn, your productivity.&lt;/p&gt;

&lt;p&gt;Let’s get to actually sorting our tasks. We’ll sort our tasks based on a few characteristics.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Productive Time&lt;/li&gt;
&lt;li&gt;Priority&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Productive Time
&lt;/h2&gt;

&lt;p&gt;You can divide your day into different time periods, for example, divide it into 4 sections:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Morning&lt;/li&gt;
&lt;li&gt;Afternoon&lt;/li&gt;
&lt;li&gt;Evening&lt;/li&gt;
&lt;li&gt;Night&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Priority
&lt;/h2&gt;

&lt;p&gt;We can divide the priorities into three sections ranging from critical tasks to not so important tasks:&lt;br&gt;
P1 - Critical tasks that must be done today&lt;br&gt;
P2 - Important tasks with a further due date&lt;br&gt;
P3 - Tasks that can be put off by a few days&lt;/p&gt;

&lt;h2&gt;
  
  
  Time Management
&lt;/h2&gt;

&lt;p&gt;Managing your time is just as important as planning your tasks, which helps you optimize your time and boost your productivity. There are many methods to help you utilize your time efficiently, one of the most widely used methods is the Pomodoro Technique. Here’s a small Twitter Thread exploring the Pomodoro Technique.&lt;/p&gt;

&lt;p&gt;Read a Twitter thread I wrote about using the Pomodoro method effectively here: &lt;a href="https://twitter.com/satwikgawand/status/1442413424860807170?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1442413424860807170%7Ctwgr%5E%7Ctwcon%5Es1_&amp;amp;ref_url=https%3A%2F%2Fcdn.embedly.com%2Fwidgets%2Fmedia.html%3Ftype%3Dtext2Fhtmlkey%3Da19fcc184b9711e1b4764040d3dc5c07schema%3Dtwitterurl%3Dhttps3A%2F%2Ftwitter.com%2Fsatwikgawand%2Fstatus%2F1442413424860807170image%3Dhttps3A%2F%2Fi.embed.ly%2F1%2Fimage3Furl3Dhttps253A252F252Fabs.twimg.com252Ferrors252Flogo46x38.png26key3Da19fcc184b9711e1b4764040d3dc5c07"&gt;Twitter Thread&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Tools
&lt;/h2&gt;

&lt;p&gt;There are many platforms and apps you can use to manage your tasks. Two of my favourite platforms to manage my tasks are Todoist and Notion.&lt;/p&gt;

&lt;p&gt;Todoist is a full-fledged Task Management platform that provides an out of the box experience. It is available on every platform and provides many features like priority sorting and project management.&lt;/p&gt;

&lt;p&gt;Notion, on the other hand, is a Do It Yourself platform. You have to build it yourself or use a template shared by others but it provides more flexibility to adapt the tool to your use case.&lt;/p&gt;

&lt;h2&gt;
  
  
  Footnote
&lt;/h2&gt;

&lt;p&gt;👋🏻 Hi! I’m Satwik.&lt;/p&gt;

&lt;p&gt;Thank you for reading this article. If you like this article, I’d appreciate a like, it’s free and motivates me to publish more content. You can also follow me on &lt;a href="https://twitter.com/satwikgawand"&gt;Twitter&lt;/a&gt; to get a bit-sized content about Productivity, Design and Development.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
