<?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: Foundsiders</title>
    <description>The latest articles on DEV Community by Foundsiders (@foundsiders).</description>
    <link>https://dev.to/foundsiders</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%2Forganization%2Fprofile_image%2F1629%2Ffc84ff88-10cf-4c32-a3f8-01e3fd6ab011.png</url>
      <title>DEV Community: Foundsiders</title>
      <link>https://dev.to/foundsiders</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/foundsiders"/>
    <language>en</language>
    <item>
      <title>Frontend Shorts: How to rotate the element on scroll with JavaScript</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sat, 04 Apr 2020 11:06:28 +0000</pubDate>
      <link>https://dev.to/foundsiders/frontend-shorts-easily-rotate-the-element-on-scroll-with-javascript-1g4p</link>
      <guid>https://dev.to/foundsiders/frontend-shorts-easily-rotate-the-element-on-scroll-with-javascript-1g4p</guid>
      <description>&lt;p&gt;While building the animated spinner on scroll for the landing page, I thought how can be done quickly and in a few lines of code with JavaScript.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I wanted to rotate an SVG reload-icon inside the circle by scrolling up and down on the web view without using any JavaScript library like jQuery or React.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;So instead, I achieved this result in a quite simple way using DOM JavaScript. Let me show you my practical implementation below:&lt;/p&gt;

&lt;p&gt;To separate the solution from the project code, I created three files for this example: &lt;code&gt;index.html&lt;/code&gt;, &lt;code&gt;index.css&lt;/code&gt;, and &lt;code&gt;index.js&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Let's mark up a green-yellow circle with reload icon in its center:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;

&lt;span class="c"&gt;&amp;lt;!-- index.html --&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
        ...
        &lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"stylesheet"&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"index.css"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt; 
    &lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"wrapper"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"circle"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                    &lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;id=&lt;/span&gt;&lt;span class="s"&gt;"reload"&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"reload-solid.svg"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"scroll"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
                &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"index.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;


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

&lt;/div&gt;

&lt;p&gt;According to the HTML-tree, next, I style the elements with CSS:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;

&lt;span class="c"&gt;/* index.css */&lt;/span&gt;
&lt;span class="nt"&gt;body&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;3000px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.wrapper&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;top&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50%&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;left&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50%&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;transform&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;translate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;-50%&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;-50%&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nl"&gt;position&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;fixed&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nc"&gt;.circle&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;border-radius&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50%&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;background-color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="no"&gt;greenyellow&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;text-align&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;center&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;vertical-align&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;middle&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;table-cell&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nf"&gt;#reload&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;height&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;50px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;


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

&lt;/div&gt;

&lt;p&gt;❗️&lt;strong&gt;Notice that the height prop of the body is 3000px, it's needed to show you the rotation of the reload icon inside the green-yellow circle by scrolling.&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Besides, I have centered the circle element vertically and horizontally for better preview. You can see in the &lt;code&gt;circle&lt;/code&gt; class.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fui6fwnhbhwgvwngmy3dw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fui6fwnhbhwgvwngmy3dw.png" alt="Styled Element"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Next, we need to add a rotation effect to the element on the scroll:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Create a function &lt;code&gt;onscroll(),&lt;/code&gt; which will call &lt;code&gt;scrollRotate()&lt;/code&gt; function in DOM.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Find the reload-icon element via id, which will rotate by scrolling and store it into the &lt;code&gt;image&lt;/code&gt; variable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Use &lt;code&gt;transform&lt;/code&gt; CSS-property to manipulate the reload-icon element by rotating.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Apply &lt;code&gt;Window.pageYOffset&lt;/code&gt;property &lt;a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/pageYOffset" rel="noopener noreferrer"&gt;that will return the number of pixels the document is currently scrolled along the vertical axis (up/down)&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;

&lt;span class="c1"&gt;// index.js&lt;/span&gt;
&lt;span class="nb"&gt;window&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;onscroll&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;function &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nf"&gt;scrollRotate&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;scrollRotate&lt;/span&gt;&lt;span class="p"&gt;()&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;image&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getElementById&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;reload&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="nx"&gt;image&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;transform&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;rotate(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nb"&gt;window&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;pageYOffset&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;deg)&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;


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

&lt;/div&gt;

&lt;p&gt;👉 &lt;code&gt;Window.pageYOffset/2&lt;/code&gt; allows making the element rotation faster. &lt;strong&gt;The lower number, the faster rotation. The higher number, the slower rotation.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsikhv0gt3cqfabzs0lci.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsikhv0gt3cqfabzs0lci.gif" alt="Rotated"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What we do (I mean frontend developers) is not all that unique. Often we face the problem that seems easy to solve and later refactor it to the more elegant and readable solution.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thank you for reading! 🙏&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you liked and found this frontend short practical, it would make me happy if you shared it on Twitter.&lt;/p&gt;

&lt;p&gt;Code your best,&lt;br&gt;
Ilona Codes&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Kristaps Grundsteins on Unsplash&lt;/em&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>css</category>
      <category>frontend</category>
    </item>
    <item>
      <title>5 Ways How to Build Trust for Your Tech Product</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Tue, 24 Mar 2020 09:07:11 +0000</pubDate>
      <link>https://dev.to/foundsiders/5-ways-how-to-build-trust-for-your-tech-product-ffb</link>
      <guid>https://dev.to/foundsiders/5-ways-how-to-build-trust-for-your-tech-product-ffb</guid>
      <description>&lt;p&gt;Building trust 🤝 is an essential part of any business.&lt;/p&gt;

&lt;p&gt;It's how you close deals, form partnerships, build your business up to its fullest potential—it's everything.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--EiQozA8N--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1211957929915629569/5woqqbsM_normal.jpg" alt="Orange Book 🍊📖 profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Orange Book 🍊📖
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @orangebook_
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Business tips.&lt;br&gt;&lt;br&gt;People help you when they like you.&lt;br&gt;&lt;br&gt;People pay when they like your product.&lt;br&gt;&lt;br&gt;People trust you when they have known you for years.&lt;br&gt;&lt;br&gt;People invest in you when you show growth.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      08:39 AM - 11 Feb 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1227150246960148484" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1227150246960148484" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1227150246960148484" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;&lt;strong&gt;If people don't trust you, they are not going to want to work with you or buy from you. It's that simple.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Ramping up a new product for a new company is always a lot of work. Here are some excellent ways to build trust and reputation with early customers and users:&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Prove yourself by demonstrating your value in public 💎
&lt;/h2&gt;

&lt;p&gt;Prove to the world that you are worth working with!&lt;/p&gt;

&lt;p&gt;👉 Reach out to the places where your target market is discussing pain points and address them directly. Think about Linkedin, Facebook groups, subreddits on Reddit, threads on Twitter, etc.&lt;/p&gt;

&lt;p&gt;Try to become a trusted voice in your niche by answering the questions and solving their problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Tell about yourself — tell your story 💬
&lt;/h2&gt;

&lt;p&gt;People want to know the person they are taking advice from or business they are going to buy from. They want to feel like they know you.&lt;/p&gt;

&lt;p&gt;👉 And if you really want to build trust for your product or service, you have to share your personal story or the story of the brand.&lt;/p&gt;

&lt;p&gt;Moreover, don't be afraid to speak up about your failures and moments of doubt. Share the story, and you may be surprised how quickly people will warm up to you and your product or service.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Do what you say you are going to do 📌
&lt;/h2&gt;

&lt;p&gt;Follow through, even under all your promises with over-deliver. In building trust—they are required. Be a person or business of the word.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If someone gives you a chance with your or with their business, then "wow" them—exceed their expectations.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 Do what you said you are going to do, and even more. Build that "more" behind the scenes and later offer it as extra. Remember that "Wow" is a must.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Create support systems 🤖
&lt;/h2&gt;

&lt;p&gt;👉 Provide a system in which people can directly communicate to your business and ask questions or report problems or bugs of the product.&lt;/p&gt;

&lt;p&gt;Today there are many ways to help you collect the feedback from your customers, for example, via chat or chatbots, contact email or form, or free call.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Genuinely care about your customers 💆‍♀️
&lt;/h2&gt;

&lt;p&gt;This is the most important component of trust.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If people don't believe that you care about them through your product, they will lend you their trust only in some circumstances but not unconditionally, even if they are convinced that you are sincere, reliable and competent.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 Be sure, that you truly understand the pains and problems of your customers. Make sure, your product or service at least partially relieves their pain and solves one of the problems.&lt;/p&gt;




&lt;p&gt;Last but not least, customers are shifting towards a buying model, which is usually based on trust and similarity. Customers are willing to buy services from people who look similar to them, to their lifestyle, needs, and mindset.&lt;/p&gt;

&lt;p&gt;Make your best product,&lt;br&gt;
Ilona Codes&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Photo by ATC Comm Photo from Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>startup</category>
      <category>development</category>
      <category>womenintech</category>
    </item>
    <item>
      <title>How to Increase Productivity on Your Side Project</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sat, 21 Mar 2020 11:45:49 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-increase-productivity-on-your-side-project-102g</link>
      <guid>https://dev.to/foundsiders/how-to-increase-productivity-on-your-side-project-102g</guid>
      <description>&lt;p&gt;Productivity is not just about how much time you spend on projects. It's about being efficient when you are working.&lt;/p&gt;

&lt;p&gt;Besides, it's also crucial to find ways to increase your energy levels, so you have the energy to tackle everything you want to work on. That's why:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. If you are serious about your side project — prioritize it on a daily basis&lt;/strong&gt; by setting aside designated time for it every day or throughout the week.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Do preparation before work!&lt;/strong&gt; When you sit at your desk to start working on your side project, you should already know exactly what you are going to do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;❗️1 hour of preparation could save you 10 hours of rework.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;— Write your to-do list early in the morning or before going to bed. Don't wait to do that when you should be working on it.&lt;/p&gt;

&lt;p&gt;— Organize the information that you need when working on your side project so you can easily access it.&lt;/p&gt;

&lt;p&gt;— Use bucket lists. If you have one idea, don't fall into the trap that you will remember it later.&lt;/p&gt;

&lt;p&gt;— Organize your environment to help you produce your best work. Turn off your phone when you enter this environment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Cut down what you can survive without&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's probably the hardest part. If you want to focus on your side project, you will have to accept the idea that some things will have to change.&lt;/p&gt;

&lt;p&gt;It's time to focus. Less is more. And if you are serious about your side project, it should be at the top of your list.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Self-discipline is very important when working on any task.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The trick is to start working almost immediately once you have your plan and timeline in place. It builds your confidence and motivates you to continue to push towards the finish line.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Always remember what drives you&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Even if you put into practice all that I have mentioned above, there will still be days that you will feel tired and without the energy to work on your project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The only thing that can help you in these days is your "why".&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;— Why are you working on this side project?&lt;br&gt;
— What drives you to make it happen?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Do not sacrifice your night of sleep&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you need 7-8 hours of sleep to feel rested, then don't sleep less or more than that.&lt;/p&gt;

&lt;p&gt;And avoid bright lights late at night. Its exposure suppresses the production of melatonin, which is a hormone your body produces to make you feel sleepy.&lt;/p&gt;

&lt;p&gt;Watching TV, checking your emails, playing games on your mobile, and all those things you love doing late at night are ruining your sleep. Avoid them at all costs too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;💬 Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Just remember that sometimes we all fail and cannot keep up with plans, deadlines, etc. that we set. That doesn't mean that we fail; it only means that we are humans. We can always get back on course and push ahead, tell ourselves that we can do anything that we make up our minds to.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by bongkarn thanyakij on Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>startup</category>
      <category>motivation</category>
      <category>developer</category>
    </item>
    <item>
      <title>Are early-stage startups "dead-by-default" when Coronavirus is causing significant harm to the world’s economy?</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 19 Mar 2020 10:10:36 +0000</pubDate>
      <link>https://dev.to/foundsiders/are-early-stage-startups-dead-by-default-when-coronavirus-is-causing-significant-harm-to-the-world-s-economy-345f</link>
      <guid>https://dev.to/foundsiders/are-early-stage-startups-dead-by-default-when-coronavirus-is-causing-significant-harm-to-the-world-s-economy-345f</guid>
      <description>&lt;p&gt;Today the Coronavirus outbreak has plunged the world's economy into a global recession, which will cause a period of a global economic slowdown.&lt;/p&gt;

&lt;p&gt;Regarding tech startups, the truth is that 90% of startups fail—all the time.&lt;/p&gt;

&lt;p&gt;In fact, startups are ventures in search of a business model. Frankly, they don't have revenue in any economy.&lt;/p&gt;

&lt;p&gt;However, now the time might be more limited for these tech startups to reach that point of profitability. In other words, it's never been so important to be lean for early-stage startups and turn the profitability switch to remain in business.&lt;/p&gt;

&lt;p&gt;In this case, even if a recession does occur, it will not stop many startups on the road to being a unicorn later. The world economy 2020 is bad, meaning costs are lower, and probably, there would be less competition.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do you think, which kind of startups could survive or even thrive through this crisis?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>startup</category>
      <category>tech</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How to Boost Emotional Intelligence to Become a Better Leader</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sat, 22 Feb 2020 18:29:53 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-boost-emotional-intelligence-to-become-a-better-leader-e1l</link>
      <guid>https://dev.to/foundsiders/how-to-boost-emotional-intelligence-to-become-a-better-leader-e1l</guid>
      <description>&lt;p&gt;&lt;strong&gt;“What does it take to be a better leader?"&lt;/strong&gt;—a lot of things: all kind of great stuff like communication skills, vision, motivations, and &lt;strong&gt;emotional intelligence (EI)&lt;/strong&gt;. EI is the ability to identify and manage our own emotions and the emotions of others. Though, it defines our professional growth and how people interpret us as a leader.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Emotional intelligence is all about people and relationships:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;between colleagues, between managers and employees;&lt;/li&gt;
&lt;li&gt;between the company and its customers, stakeholders, competitors, networking contacts.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;When dealing with people, remember you are not dealing with creatures of logic, but with creatures of emotion. —Dale Carnegie&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In seeing that people skills could make all the difference, Carnegie effectively popularized in his books the idea of emotional intelligence, decades before it was established as a fact in academic psychology.&lt;/p&gt;

&lt;p&gt;More information about how to apply emotional intelligence in everyday life you can find in the bestseller: “How to Win Friends and Influence People” by Dale Carnegie. &lt;a href="https://www.reddit.com/r/BizBookClub/comments/f1oo4p/quick_review_how_to_win_friends_and_influence/"&gt;Here, you can read a quick review of the book&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Are you aware of how your emotions affect your success in life?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For sure, if you have good emotional intelligence and lower levels of general intelligence, you can still be a great leader. However, if you have lower levels of emotional intelligence and good general intelligence, you will struggle to be a good leader.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How can we help ourselves with developing EI?&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ❣️ Show empathy
&lt;/h2&gt;

&lt;p&gt;It means understanding the needs of others, be willing to appreciate it. This, in itself, makes it essential in the workplace.&lt;/p&gt;

&lt;p&gt;For example, for leaders to get through the tough times easier, they will have to understand what their co-workers are going through. Without empathy, it's impossible to nurture a team.&lt;/p&gt;

&lt;h2&gt;
  
  
  👂 Listen twice as much as you talk
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;We have two ears and one mouth so that we can listen twice as much as we speak. —Epictetus&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;When we listen, we show people that they are valued. Enjoy the presence of other people and learn to develop a listening attitude.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Become a quick decision-maker
&lt;/h2&gt;

&lt;p&gt;Our emotional awareness will decide how we make decisions in our life–be it professional or personal.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;
      &lt;div class="ltag__twitter-tweet__media"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--H_i4j6cB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/media/EFpccqqXYAAQyln.jpg" alt="unknown tweet media content"&gt;
      &lt;/div&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--GbhyokQY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/943964321587105792/anNpixt2_normal.jpg" alt="richard shotton profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        richard shotton
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @rshotton
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Kahneman’s analogy about quick decision making&lt;br&gt;&lt;br&gt;Spotted in the office of ⁦&lt;a href="https://twitter.com/DDBCanada"&gt;@DDBCanada&lt;/a&gt; 
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      17:08 PM - 29 Sep 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1178355903600484352" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1178355903600484352" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1178355903600484352" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;The most critical component of decision making is self-confidence.&lt;/p&gt;

&lt;p&gt;We decide: how we envision the world around us, how confident we are, and how we make a decision for better or worse.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧘‍♀️ Develop self-awareness
&lt;/h2&gt;

&lt;p&gt;How do emotions affect our behavior and leadership role?&lt;/p&gt;

&lt;p&gt;Self-awareness goes hand in hand with emotional intelligence giving us a better view of how we discover things. People respect the leader who stays calm when the issues may arise.&lt;/p&gt;

&lt;p&gt;Identify your own bad habits to develop a foundation for self-improvement. It is on us how to choose to behave with ourselves and others.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;The ability to accept feedback is an excellent example of developing emotional intelligence.&lt;/strong&gt; To truly accept feedback, you have to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Make it clear to people that you are open to feedback, and that you want feedback.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Give up on being right during the feedback session. It is not about being right. It is about getting feedback.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Even if the feedback is yelling or completely wrong, listen attentively. It is about hearing and making sure the other person knows they are heard.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Take notes. This way, you can ask questions about the feedback for clarification. Get as much as you can.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Say, thank you. Show that you really appreciate it. Work on meaning it.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;With experience, emotional detachment can come eventually. The feedback that listened to carefully can provide gems for the person: their growth and self-improvement.&lt;/p&gt;




&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;Emotional Intelligence is about recognizing our own emotions first.&lt;/p&gt;

&lt;p&gt;It is exercising self-control within ourselves. So that we can put ourselves in other people’s shoes and bring our empathy into play not only at work but in life too. Therefore reading between the lines and understanding the needs of others.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The good news is that just like your regular intelligence, you can also train your emotional intelligence.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can learn to become more empathetic, to be more aware of your own emotions and to deal with them better, resulting in a more fulfilled life and career.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Pixabay from Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>leadership</category>
      <category>learning</category>
      <category>motivation</category>
    </item>
    <item>
      <title>When Is the Perfect Time to Move on as a Developer?</title>
      <dc:creator>Alex Fedorov</dc:creator>
      <pubDate>Tue, 11 Feb 2020 16:48:04 +0000</pubDate>
      <link>https://dev.to/foundsiders/when-is-the-perfect-time-to-move-on-as-a-developer-ofb</link>
      <guid>https://dev.to/foundsiders/when-is-the-perfect-time-to-move-on-as-a-developer-ofb</guid>
      <description>&lt;p&gt;&lt;strong&gt;If you want to have a simple, easy, comfy, safe and secure job, then stop reading this post right this moment!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Still here?&lt;/p&gt;

&lt;p&gt;Good. Let’s do this then!&lt;/p&gt;

&lt;h2&gt;
  
  
  20yrs of experience or 1yr repeated 20 times?
&lt;/h2&gt;

&lt;p&gt;If you’ve been a developer for a while, you probably have noticed that there are folks with double-digit experience in years.&lt;/p&gt;

&lt;p&gt;But they are not as good as you wish they were.&lt;/p&gt;

&lt;p&gt;They focus on wrong things, they are stuck in the past way of doing things, and use outdated technology, or want to spend as much as possible of their time in the meeting.&lt;/p&gt;

&lt;p&gt;(so that they don’t have to do actual work).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;There is a term in the industry for these developers: “1 year of experience repeated N times.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Of course, it’s not so black and white, and you can have somebody who has legit 3-4 years of experience, but then they got stuck in a situation that didn’t really allow them to acquire new skills, and they were repeating these 3-4 years (or subset of them) for a while now.&lt;/p&gt;

&lt;p&gt;So we have a whole range, from people who are plain harmful to the team, product, and the company, &lt;strong&gt;who just want a safe and secure job and do as least work as possible.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And somewhere in the middle, we have well-meaning folks who have lost their ability to learn new things, improve, and &lt;strong&gt;are terrified of stepping outside of their comfort zone.&lt;/strong&gt; They may be a good worker or inadvertently block others from improving and delivering value quickly.&lt;/p&gt;

&lt;p&gt;Finally, you have someone who had 20 years of experience, and &lt;strong&gt;this experience was always unique, challenging, and still extending their comfort zone further and further.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;These are top performers who help each team member around them and deliver exceptional results. And if you ask them tomorrow what they learned yesterday—they’ll always have something interesting to say.&lt;/p&gt;

&lt;p&gt;Unfortunately, it’s way to easy to fall into a trap and get stuck in the middle, or even worse.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It’s way too easy to become “1 year repeated 20 times.”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When you finish reading this article, you’ll be well-equipped to prevent that from happening and even become exceptional with real 20 years of experience.&lt;/p&gt;

&lt;p&gt;But before we jump into solutions, why not dive deeper into the problem?&lt;/p&gt;

&lt;h2&gt;
  
  
  Problem: wasting experience years
&lt;/h2&gt;

&lt;p&gt;This problem occurs when you are wasting entire years of your experience, just doing a secure, comfy job, where you don’t need to challenge yourself or learn anything (or much).&lt;/p&gt;

&lt;p&gt;One thing is to waste years entirely (sure way to become an epitome of “1 year repeated 20 times”), and another thing is to have the &lt;strong&gt;quality of these years of experience reduced.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What do I mean by reduced?&lt;/p&gt;

&lt;p&gt;That’s when you are still learning a bit, and it’s a bit challenging, but it is way below what you can really handle, and it is not really stretching your comfort zone enough.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real experience is gained outside of your comfort zone.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;How does this happen?&lt;/p&gt;

&lt;p&gt;For example, you may be good enough with the technology at your job, and you can handle 98% of the work with your closed eyes.&lt;/p&gt;

&lt;p&gt;Then the process—it’s just working for you, okay, even though there are definite improvements that can be done to get 50-80% efficiency gains, but no—why touch what works.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why risk it?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why step outside of your comfort zone, and pull your team with you?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;That’s the line of thinking that gets the person, the team, and the organization into the reduced quality of experience mode.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Also, the reduced quality of performance as a long-term result of this all.&lt;/p&gt;

&lt;p&gt;Another problem with such complacency is that &lt;strong&gt;the longer you don’t step out of your comfort zone, the harder it’ll be to do in the future.&lt;/strong&gt; Eventually, it becomes a terrifying step and almost nigh impossible to do.&lt;/p&gt;

&lt;p&gt;Don’t ever let it get to this point!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The right mindset is one of continuous improvement and growth.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In this mindset, you’re going to be improving yourself, your team, people around you, product, codebase, and the company you’re in (and maybe even the world) all the time, with small incremental, but definite steps.&lt;/p&gt;

&lt;p&gt;Of course, you’re going to fail.&lt;/p&gt;

&lt;p&gt;And that’s good. &lt;strong&gt;Failures are the signs of learning&lt;/strong&gt;, and of you attempting to do something very likely to be worth it.&lt;/p&gt;

&lt;p&gt;People who don’t fail—do not learn.&lt;/p&gt;

&lt;p&gt;This mindset is how you maximize your own experience quality and get the most out of your time and how you become a top performer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Hello, dear skeptic
&lt;/h2&gt;

&lt;p&gt;I know what you might be thinking:&lt;/p&gt;

&lt;p&gt;It’s a terrible idea only to do new things, and only learn, because you have to become good at something via repetition and practice, before you can perform at a decent level.&lt;/p&gt;

&lt;p&gt;If that’s what you’re thinking, I cannot agree more with you!&lt;/p&gt;

&lt;p&gt;I don’t advocate limiting yourself to doing new things only.&lt;/p&gt;

&lt;p&gt;Instead, &lt;strong&gt;you should get your existing skills to an excellent level&lt;/strong&gt; until things start to get more comfortable. And that is the right moment to add some more skills or responsibilities to your repertoire.&lt;/p&gt;

&lt;p&gt;This way, you &lt;strong&gt;always maintain a constant cumulative level of challenge while delivering excellent quality work.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Alright, let’s get technical with how you can keep ever-increasing the quality of your experience years:&lt;/p&gt;

&lt;h2&gt;
  
  
  Practice and get better at what you’re already doing
&lt;/h2&gt;

&lt;p&gt;If you are already doing something well, and it’s quite easy to deliver your work, then it’s time to start challenging yourself.&lt;/p&gt;

&lt;p&gt;How?&lt;/p&gt;

&lt;p&gt;You establish restrictions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Try to do it faster&lt;/strong&gt; while keeping the same level of quality;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Try to improve quality&lt;/strong&gt;, while spending the same amount of time;&lt;/li&gt;
&lt;li&gt;Help others to do this better—&lt;strong&gt;become multiplier&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In essence, &lt;strong&gt;practice, deliver, fail, get feedback, learn from it, and improve.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every day.&lt;/p&gt;

&lt;p&gt;If you do that, soon you’re going to reach a point where the amount of effort and time it takes to improve is just too much for the increase of effectiveness or quality.&lt;/p&gt;

&lt;p&gt;This is where you can start handling some more responsibilities:&lt;/p&gt;

&lt;h2&gt;
  
  
  Get more responsibilities
&lt;/h2&gt;

&lt;p&gt;For example, you’re getting really good at 2 out of the 3 necessary skills to do your job, and your boss is pleased with both of your current responsibilities.&lt;/p&gt;

&lt;p&gt;Then it’s time to &lt;strong&gt;look around you and see what should be done, but it’s not getting done&lt;/strong&gt;, or not consistently, and no one is responsible for.&lt;/p&gt;

&lt;p&gt;But your gut really tells you these things have to get done consistently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Get the ownership of that. Just start doing that. Learn in the process. Take that responsibility.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Of course, you’ll make mistakes. But you have your saving grace—you’re trying to make things better for everybody around you.&lt;/p&gt;

&lt;p&gt;Once you get 10-20% of the mastery of that responsibility and see some good outcomes, go to your boss and “make it official.”&lt;/p&gt;

&lt;p&gt;If it so happens that there are no responsibilities around you to take ownership of, then you should go with a new skill:&lt;/p&gt;

&lt;h2&gt;
  
  
  Get more skills
&lt;/h2&gt;

&lt;p&gt;For example, you’re handling all responsibilities that suit you, and all of your three skills are at the level where improving them doesn’t make too much sense anymore. They’re that good.&lt;/p&gt;

&lt;p&gt;Then it’s time to &lt;strong&gt;hunt some more skills for your belt.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First, look at &lt;strong&gt;what new skills you want to have&lt;/strong&gt; (try to guess what you may need in the future), or what you think you’ll love to do.&lt;/p&gt;

&lt;p&gt;Second, take a &lt;strong&gt;look at your environment, what skills are lacking in it?&lt;/strong&gt; That’ll be beneficial to either the team, product, or company as a whole.&lt;/p&gt;

&lt;p&gt;Now, &lt;strong&gt;intersect the two. What’s left is what you should be learning&lt;/strong&gt;, practicing, and start applying at your job.&lt;/p&gt;

&lt;p&gt;Again, &lt;strong&gt;practice, deliver, fail, get feedback, improve, and repeat.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now, there is a dark side to all of that. Let’s chat about it:&lt;/p&gt;

&lt;h2&gt;
  
  
  What you SHOULD NOT do
&lt;/h2&gt;

&lt;p&gt;If you realize that what you want to learn doesn’t fit your current company or role, then &lt;strong&gt;forcing it into your job will bring a lot of harm&lt;/strong&gt; to the people around you, product, and your company.&lt;/p&gt;

&lt;p&gt;An excellent example of that’d be a new fancy programming language or technology. But you have to come up with almost implausible excuses to use it at your job.&lt;/p&gt;

&lt;p&gt;My personal work ethics tells me that this is a horrible idea then.&lt;/p&gt;

&lt;p&gt;Therefore, this is not something you want to do.&lt;/p&gt;

&lt;p&gt;Don’t be too selfish.&lt;/p&gt;

&lt;p&gt;But what &lt;strong&gt;if you see this skill or that responsibility as a vital component of your future career?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Well, if you really think so, then there is a solution for you:&lt;/p&gt;

&lt;h2&gt;
  
  
  It’s time to move on
&lt;/h2&gt;

&lt;p&gt;For instance, you are in the unfortunate situation where &lt;strong&gt;what you want to get better at, doesn’t benefit your employer or your team (or even harms them).&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Then it’s time to start searching for a new job&lt;/strong&gt;, and if your company is big enough, &lt;strong&gt;investigate what other roles/departments you can move in&lt;/strong&gt;, where it’d work well.&lt;/p&gt;

&lt;p&gt;Your goal is to start learning and practicing it on your own (and in 10% time if you have that benefit at your company), but &lt;strong&gt;not force it into your day-to-day work (to do no harm).&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In parallel, &lt;strong&gt;talk to people.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A lot of them.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Learn what companies are out there, and who may need your current skillset plus what you’re trying to learn.&lt;/p&gt;

&lt;p&gt;Reach out to them and try to get through the interview process. You probably will have to play a number game, because, while you’re expert in a few topics, you’re still learning this one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Look for something that will fit your chosen direction as best as possible&lt;/strong&gt;, and where you, learning this on the job, will be precious to the team and a company as well.&lt;/p&gt;

&lt;p&gt;I cannot stress enough—&lt;strong&gt;it’s going to be challenging.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;And it’s well worth it!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Also, since you are changing roles/companies, it’s an excellent opportunity &lt;strong&gt;to negotiate a higher paycheck&lt;/strong&gt;. For example, &lt;strong&gt;with this website for developers you can share your salary info and &lt;a href="https://fellowage.io/?r=dt"&gt;find out how much people earn at the other company&lt;/a&gt; you are negotiating with.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Finally, depending on your aspirations and goals for the future, it may be a good idea to start your own thing:&lt;/p&gt;

&lt;h2&gt;
  
  
  Go independent
&lt;/h2&gt;

&lt;p&gt;If your &lt;strong&gt;ambitions cannot be satisfied anymore&lt;/strong&gt; by any organization around you (or even remotely, in a different country), then you’re likely to be &lt;strong&gt;ripe to go independent.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What do I mean by that?&lt;/p&gt;

&lt;p&gt;Well, there are three options:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;become a freelancer,&lt;/li&gt;
&lt;li&gt;start your own product company,&lt;/li&gt;
&lt;li&gt;start a service company or agency.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There is, of course, a whole lot to learn there. And a lot of potential failures to encounter.&lt;/p&gt;

&lt;p&gt;And that’s good. As we established, &lt;strong&gt;this increases the quality of your years of experience!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There are trade-offs to these options, and probably more I haven’t thought about yet. I’m not going to cover these in this post—it’s already getting long! (sorry about that)&lt;/p&gt;

&lt;p&gt;What I should tell you, is that there are &lt;strong&gt;few things you should do before going independent:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Make sure to &lt;strong&gt;save some money for N months&lt;/strong&gt;—you need that runway because success won’t come on day one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Line up a job or contractor opportunity in N months&lt;/strong&gt; for the worst-case scenario where you have failed a lot of times and never succeeded getting anything off the ground.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Just remember, &lt;strong&gt;failing is not a bad thing.&lt;/strong&gt; If you are failing and failing often—that’s great. (Just don’t forget to learn and improve between failures).&lt;/p&gt;

&lt;p&gt;It’s &lt;strong&gt;much worse if you are not failing for a long while&lt;/strong&gt;, only to run out of all your saved money and realize that the whole venture was one big failure, and you haven’t had an opportunity to learn from it. And now it’s too late.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Get a mentor. Almost every successful independent person had a mentor&lt;/strong&gt;. That’s one of the primary ways you’re going to get feedback on what you do and improve.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Seek external feedback as often as you can&lt;/strong&gt;. Sometimes, in business, what appears to be a failure to you, may actually be a bud of the enormous success that you can’t see because you lack a specific type of experience.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;That’s the hardest path, and it’s well worth the effort.&lt;/strong&gt; Good luck, and let’s summarize:&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;As you know, some folks have 20 years of experience, but actually, just one year repeated 20 times. Let’s call it “the left side” of the scale.&lt;/p&gt;

&lt;p&gt;And then there are outstanding professionals, who have only, what 7 years, but all of these years are unique experiences that make them exponentially better than the former. These are probably top performers in their field. Let’s call it “the right side” of the scale.&lt;/p&gt;

&lt;p&gt;(pun intended)&lt;/p&gt;

&lt;p&gt;And then there is everything in between.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So how does one get closer to the right side?&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Don’t chase only “new and unique” all the time—make sure you actually &lt;strong&gt;get good at skills and responsibilities before you add more things to your repertoire.&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Challenge yourself every day.&lt;/strong&gt; Be ready to answer the question “what did you learn yesterday” with something substantial. Perhaps add “how did you fail last week” to the list of these must-be-able-to-answer questions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In fact, answer these questions every day, if you can help it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Never become complacent and have an “easy job.”&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Get more skills&lt;/strong&gt; that’ll help your team/product/company to become more successful when your current skillset starts to near the “easy job” state.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Become responsible for more&lt;/strong&gt; (and more important/challenging) things.&lt;/li&gt;
&lt;li&gt;Make sure that what you’re adding to your “toolbelt” &lt;strong&gt;is actually valuable to people around you, your product, your company, or your customers&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;If your path forward makes the above not true, then it’s time to switch a job. &lt;strong&gt;Don’t forget to negotiate a larger paycheck, as this is the easiest time to do that! &lt;a href="https://fellowage.io/?r=dt"&gt;Use this to find out what is the pay at the company you are negotiating with&lt;/a&gt;.&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Finally, if such a company doesn’t exist (or is inaccessible to you)—then &lt;strong&gt;create one! Become independent.&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Now it’s your turn!
&lt;/h2&gt;

&lt;p&gt;Quality of the years of your experience is entirely in your hands. Don’t let weak excuses make you think that somebody else is responsible for your career.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You are the only one.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And &lt;strong&gt;you owe yourself&lt;/strong&gt; to get as close as you can to “the right side” of this experience scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So get out there, and never ever stop learning!&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;small&gt;&lt;em&gt;Photo by &lt;a href="https://unsplash.com/@joshstyle" rel="noopener nofollow noreferrer"&gt;Joshua Coleman&lt;/a&gt; from &lt;a href="https://unsplash.com" rel="noopener nofollow noreferrer"&gt;Unsplash&lt;/a&gt;&lt;/em&gt;&lt;/small&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>career</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>How to Design Great Software Products in Small Startups</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sun, 09 Feb 2020 16:58:30 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-design-great-software-products-in-small-startups-4pld</link>
      <guid>https://dev.to/foundsiders/how-to-design-great-software-products-in-small-startups-4pld</guid>
      <description>&lt;p&gt;If you are aware of the values of carrying out the &lt;a href="https://www.smashingmagazine.com/2018/01/comprehensive-guide-product-design"&gt;Product Design Process&lt;/a&gt;, then you are halfway through the success!&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;
      &lt;div class="ltag__twitter-tweet__media"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--asJiu1d6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/media/EDkc-GXXUAg5jiN.jpg" alt="unknown tweet media content"&gt;
      &lt;/div&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--_QnvwVAH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/798540437816414208/P4Z1qvWw_normal.jpg" alt="CW profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        CW
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @cwodtke
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      A quick drawing of the design process. 
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      21:21 PM - 03 Sep 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1168997438822264835" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1168997438822264835" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1168997438822264835" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;And when you are starting out, you tend to change processes every day, until the team figures out which processes are the most efficient for them to deliver faster.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"If you want to have time for everything: raising children, loving, working, playing sports, relaxing, you need more time. Only those who work faster and better will flourish." — Carl Sewell, Customers for Life.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You can build a good digital product by working in a small team in the beginning. Just think about the most strong brands with their successful digital products: I am sure, all of them that came to your mind started small in the past.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In fact, the product design process is one of those questions that is done differently everywhere.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Typically founders take responsibility when it comes to this. For example, at &lt;a href="https://foundsiders.com/"&gt;Foundsiders&lt;/a&gt;, I am in charge of developing the design concept, and other co-founder implements it into the working application for the most part.&lt;/p&gt;

&lt;p&gt;Founders who are bootstrapping their products clearly understand the advantage of working on a small team: &lt;strong&gt;the smaller the team, the less formal the process is&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For design products at small startups, it usually means that the team can re-design pages/flows on the fly in their code, view that code in browser debugger/inspector, and iterate again.&lt;/p&gt;

&lt;p&gt;Moreover, much of the design will probably be on paper or whiteboard. How does it work:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Someone has an idea 💡&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Quick discussion 💬 on the feasibility of the idea&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Do a quick research 👩‍🔬 to understand: why users will need this idea and which user's problem will it solve. This will lead to a rough blueprint of the feature in the next step.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sketching out and wireframing 🏗 the idea into the app screen. It's necessary to refine and iterate on the vision from the wireframe, so you can use &lt;a href="http://balsamiq.com"&gt;Balsamiq&lt;/a&gt; to do that.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Design mode 🎨 Going through each wireframe and laying design mockups on top with the &lt;a href="https://www.sketch.com"&gt;Sketch app&lt;/a&gt;. However, you can use whatever app that works for you. It's just a tool.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Export ready mockups to &lt;a href="https://zeplin.io"&gt;Zeplin&lt;/a&gt;. Then as the team, we can navigate around it, perform design reviews 📝 and agree on what is going to be implemented.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Build the idea into the product locally. Frankly building a feature into a static frontend 👩‍💻 version of the product.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Validation and iteration within the team 👩‍💻👨‍💻&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Validation outside of the team with the potential user 👤 (Don't skip this step if at all possible).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Again iterate to decide ⚖️ whether to develop the idea implementation further, change direction, or drop the idea altogether.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Develop the end-version of the idea into production and deploy it ✅&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Gain learnings from data collection 📊 (review engagement and conversions).&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here is a brief explanation of the feature development cycle for the digital product:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MuCg7X7V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/8vtw0n6gpqr7lzzrwtpj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MuCg7X7V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/8vtw0n6gpqr7lzzrwtpj.png" alt="Feature development cycle for the digital product"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Since you work at a small startup, you have a few resources. And it's for the better. Because everything works best when all hands are helping out and always have what to do.&lt;/p&gt;

&lt;p&gt;For instance, the non-technical co-founders can be validating the usability running it by potential users or coming up with better ideas, do customer and market research, and so on. The tech people are doing everything the non-tech people are in addition to building out the tech according to their professional expertise.&lt;/p&gt;

&lt;p&gt;Now I am wondering, &lt;strong&gt;how does look the design process for the product you are working on?&lt;/strong&gt; Please share it shortly in the comments below 👇 &lt;/p&gt;

</description>
      <category>startup</category>
      <category>design</category>
      <category>ui</category>
      <category>ux</category>
    </item>
    <item>
      <title>How to Find Unique and Memorable Name for Your Product</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 23 Jan 2020 16:16:20 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-find-unique-and-memorable-name-for-your-product-1dhk</link>
      <guid>https://dev.to/foundsiders/how-to-find-unique-and-memorable-name-for-your-product-1dhk</guid>
      <description>&lt;p&gt;Having the right name will have a huge impact on how people perceive your product. Because it can literally make, break and limit the growth potential of your product.&lt;/p&gt;

&lt;p&gt;While a great name will make it easier for people to connect to your product, a bad one can alienate, confuse, and entirely bore potential users.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--9fpCU-Ik--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1202518418810753025/lS7nWhON_normal.png" alt="Noah Smith 🐇 profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Noah Smith 🐇
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @noahpinion
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      How to explain social networks to Boomers in three words or less:&lt;br&gt;&lt;br&gt;Instagram: pictures&lt;br&gt;&lt;br&gt;YouTube: videos&lt;br&gt;&lt;br&gt;Twitter: eternal dorm argument&lt;br&gt;&lt;br&gt;WhatsApp: talk to friends&lt;br&gt;&lt;br&gt;Slack: talk to coworkers&lt;br&gt;&lt;br&gt;Twitch: videos of games&lt;br&gt;&lt;br&gt;TikTok: Chinese video surveillance&lt;br&gt;&lt;br&gt;Facebook: Facebook, but worse
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      08:34 AM - 20 Jan 2020
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1219176390278299649" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1219176390278299649" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1219176390278299649" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;&lt;strong&gt;A good name should be creative, brand-aligned associations without being difficult to understand.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For instance, the name Facebook instantly conjures up thoughts of people connecting.&lt;/p&gt;

&lt;p&gt;Another example is Fiverr. It's naturally “developing” product name, which comes from the original price of gigs or jobs at only a “fiver” – $5.00 per task. The product name has been built on the prior product idea and transitioned to the biggest freelance marketplace that offers many diverse jobs and services.&lt;/p&gt;

&lt;p&gt;Even though Flickr is a successful company, its product name was challenging to brand in the beginning. Because people didn't know what its name stands for. And you definitely don't want people drawing a blank when they see or hear about your product name.&lt;/p&gt;

&lt;p&gt;That's why to discover the perfect name for your product and leave a great first impression, ensure you follow the conceptual approaches to capture people's attention by the product name at first sight:&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Question your product
&lt;/h2&gt;

&lt;p&gt;To jump into the process of creating a name, ask yourself the following questions before, and write down the answers:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Who is supposed to be your primary user—create a persona&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- What the main problem the product is solving for them?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- How best the product name can describe what you do?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- What words or phrases—keywords, should appeal to people when they hear about the product at first?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- Are there any metaphors that communicate what would be relevant to people to understand what the product is?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;- What are the competitors’ names? How would your product name differentiate from others?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I recognize that these are basic questions before defining, designing, developing, and launching your product.&lt;/p&gt;

&lt;p&gt;Personally, I also consider these questions a checklist of sorts. As you ask and answer these questions, you’ll get more and more ideas for the naming of your product.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The naming of cats is a difficult matter.&lt;br&gt;
-- T. S. Eliot&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🖼 Position product image
&lt;/h2&gt;

&lt;p&gt;So far, as you answered the questions, draft a creative brief.&lt;/p&gt;

&lt;p&gt;It is basically an ingredient list of everything you need to combine to create the perfect name. It includes everything from the target audience to words to avoid and more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This way, you will be able to define precisely what your product stands for and figure out what you want the name to communicate.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Since the creative brief is a map, make sure you approach it honestly and thoughtfully.&lt;/p&gt;

&lt;p&gt;Check this presentation out to read the &lt;a href="https://www.slideshare.net/jasmincheng/the-creative-brief-a-research-project"&gt;research project about the brief creative drafting&lt;/a&gt; by the advertising company.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤖 Use name generator for inspiration
&lt;/h2&gt;

&lt;p&gt;Once you have your creative brief, collect all your name ideas, and then dive deep into the internet to have fun and get inspiration from online name generators. That is such a great way to generate even more product name ideas!&lt;/p&gt;

&lt;p&gt;Google it. Example: “Product/business name generator.” There are some pretty cool ones, and some are better than others.&lt;/p&gt;

&lt;p&gt;My favorite one is &lt;a href="https://namelix.com/"&gt;Namelix&lt;/a&gt;, which generates short and brandable names using artificial intelligence.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Moreover, be sure to check domain registrars and see what's available. Don't forget to do the same for social media usernames and trademarks too.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Besides, consider actual words vs. made-up words. Because search engines use &lt;a href="https://support.google.com/gsa/answer/2672312?hl=en"&gt;Did You Mean and Misspellings&lt;/a&gt; algorithms, which means people might have an issue finding you.&lt;/p&gt;

&lt;h2&gt;
  
  
  📌 Keep it simple but sticky
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;A name should be phonetically pleasing, stick to the ear, and set your product apart from competitors.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the reasons company names such as Google, Apple, and Netflix work is because they are catchy, easy to say, and produce high-quality products.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;
      &lt;div class="ltag__twitter-tweet__media"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2AIJrAcW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/media/EFU3MGuUcAAK6aN.jpg" alt="unknown tweet media content"&gt;
      &lt;/div&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--hRNvaOu7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1162388814456852480/y6ukaLqe_normal.jpg" alt="Heather Kelly profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Heather Kelly
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @heatherkelly
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      Slow clap for Amazon’s product naming team... 
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      17:13 PM - 25 Sep 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1176907601059049472" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1176907601059049472" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1176907601059049472" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;Amazon is an awesome name because it implies that the retailer carries everything from A to Z, and is massive.&lt;/p&gt;

&lt;p&gt;Just imagine, if the company had still called “Cadaver” as Jeff Bezos wanted to name his venture, it probably would have followed a very different path.&lt;/p&gt;

&lt;p&gt;Regarding &lt;a href="https://foundsiders.com/"&gt;Foundsiders’&lt;/a&gt; digital product names, we also wanted people to get the idea of what they are about from their name, and not after reading their descriptions.&lt;/p&gt;

&lt;p&gt;For example, &lt;a href="https://www.fellowage.io/"&gt;FelloWage&lt;/a&gt; implies that it is a tool that you can use to view other fellows’ wages. And &lt;a href="https://www.bizbookclub.io/"&gt;BizBookClub&lt;/a&gt; is a book club for entrepreneurs.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Reach out to others for feedback
&lt;/h2&gt;

&lt;p&gt;When you come up with your name, please take steps to ensure it is the right one. Let others review your name idea and give you feedback so that you can improve on it.&lt;/p&gt;

&lt;p&gt;To clarify, this doesn't mean you should share ideas only with outsiders on different platforms, try to reach out to your target audience, people who are supposed to use your product in the future.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;None of us is as smart as all of us.&lt;br&gt;
—Ken Blanchard.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Collect their impressions—the first thoughts about your product name. You are looking for the strongest name, not something watered-down and safe.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Don't be afraid to trust yourself too. It's okay 👌 to be different. You know, the best names often seem jarring at first, like Google.&lt;/p&gt;

&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;There you have it: everything you need to generate an outstanding product name!&lt;/p&gt;

&lt;p&gt;You don't have to be a genius creative to find the right name for your product. You have to follow the listed rules above 🔝&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A good name shouldn't be complicated, short, or long—it should be easy for potential users to understand, remember, and love.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;There is no right or wrong process when it comes to creating a product name. Now I am curious about:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do you choose a great and memorable name for your product? What are your best techniques or tips for that?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Please &lt;a href="https://twitter.com/ilonacodes"&gt;ping me on Twitter&lt;/a&gt; and share your thoughts about it.&lt;/p&gt;

&lt;p&gt;Make your best life,&lt;br&gt;
Ilona&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Pineapple Supply Co. from Unsplash&lt;/em&gt;&lt;/p&gt;

</description>
      <category>startup</category>
      <category>tutorial</category>
      <category>psychology</category>
      <category>todayilearned</category>
    </item>
    <item>
      <title>Why Should You Surround Yourself With Supportive People?</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Mon, 20 Jan 2020 16:59:41 +0000</pubDate>
      <link>https://dev.to/foundsiders/why-should-you-surround-yourself-with-supportive-people-1nkp</link>
      <guid>https://dev.to/foundsiders/why-should-you-surround-yourself-with-supportive-people-1nkp</guid>
      <description>&lt;p&gt;Ever shared your goals and aspirations with a family or friend, only for them to not understand or unable to relate?&lt;/p&gt;

&lt;p&gt;We have all been there.&lt;/p&gt;

&lt;p&gt;And this is why motivation and inspiration are fueled by connecting and networking with people who have similar interests and mindsets.&lt;/p&gt;

&lt;p&gt;But who exactly should you be looking for?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You must not just surround yourself with only people you look up to, but also with people who are chasing similar dreams.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Because they can influence your course of life positively by sharing what they are thinking, showing what they are doing to reach their goals.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The people you spend the most time with shape who you are. 💎&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Our environment indeed does shape and influence us both mentally and physically based on studies: &lt;a href="https://www.ncbi.nlm.nih.gov/pubmed/14709704"&gt;the built environment and mental health&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Even the most influential and wise motivational speaker and businessman, Jim Rohn, said that:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You are the average of the five people that you mingle with.&lt;br&gt;
—Jim Rohn&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You can take advantage of that if you start hanging out more with people who have the mindset you seek to adopt and are achieving (or have already achieved) goals similar to yours.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤞 Aim to pal up with truth-tellers
&lt;/h2&gt;

&lt;p&gt;One of the keys to achieving success is to surround yourself with supportive truth-tellers:&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--Pd8RAJ-6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1259558245/vala_300dpi_normal.jpg" alt="Vala Afshar profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Vala Afshar
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @valaafshar
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      I have had a privileged life, mostly because I have had people who loved and supported me.&lt;br&gt;&lt;br&gt;Surround yourself with caring and supportive truth tellers. Then reciprocate. &lt;br&gt;&lt;br&gt;Be the person that you would want to follow.
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      23:31 PM - 27 Mar 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1111048131221831682" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1111048131221831682" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1111048131221831682" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;Everybody needs at least one person around who tells them the truth, who can tell you if you are wrong or made a mistake, who will provide you constructive feedback, and help you grow faster in this way or not allowed to make a more significant mistake.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't be afraid to trust people because your fears can be holding you back from further developing a good relationship with people who could one day be your friends.&lt;/strong&gt;&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--8XwXBugF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/1194087055736922113/iQmEx150_normal.jpg" alt="Gary Vaynerchuk profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        Gary Vaynerchuk
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        @garyvee
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      I prefer to give trust upfront &lt;br&gt;&lt;br&gt;I prefer to earn someone’s trust over time&lt;br&gt;&lt;br&gt;This is becoming obvious to me and I’m intrigued by how it affects my happiness
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      15:08 PM - 15 Feb 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1096425973506027521" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1096425973506027521" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1096425973506027521" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;The best way to trust anyone is to get to know them first as ordinary individuals who have good intentions. Don't be quick to judge them.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌟 Get inspired by people
&lt;/h2&gt;

&lt;p&gt;Even the simple act of observing others can affect your own inspiration and motivation in life.&lt;/p&gt;

&lt;p&gt;According to &lt;a href="https://link.springer.com/article/10.1007/s11031-009-9151-3"&gt;motivation synchronicity experiments&lt;/a&gt;, the person who is watching how someone else performs a task will either become intrinsically motivated (motivation comes from within) or extrinsically motivated (motivation comes from external recognition and rewards).&lt;/p&gt;

&lt;p&gt;As a result, the person who is intrinsically or extrinsically motivated to experiment with the observed task will try to accomplish this task or similar on their own too.&lt;/p&gt;

&lt;p&gt;That's why when you see what others created or built something that you genuinely like, at that moment the thought passes in your mind:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;“I can do it too! At least I can try it!”&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://hbr.org/2018/05/research-watching-an-expert-do-something-makes-you-think-you-can-do-it-too"&gt;Research watching an expert do something make you think you can do it too&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  📚 Learn from successful people around you
&lt;/h2&gt;

&lt;p&gt;Successful people have enthusiasm for whatever they are into, whether it is the psychology, programming, medicine, teaching, or business. &lt;strong&gt;They are talking about it, reading articles written by others who are successful, and happily busy with full schedules.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now imagine how you would be lucky meeting with and talking to them, learning from their experience and wise bits of advice.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Is there anyone so wise as to learn by the experience of others?&lt;br&gt;
—Voltaire&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Thus, you can learn something you are curious about when you talk to them. Take advantage of this opportunity and learn from smart and successful people as much as possible.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚧 Remove negative people from your life
&lt;/h2&gt;

&lt;p&gt;Most people who never achieve success surround themselves with negative people.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Negative people rarely change.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The pessimist does not care about anyone but themselves. They actually like being negative. It makes them feel authoritative, alive and gives them something to do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don’t try to change a pessimist! They will probably change you.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Negative people are toxic, and so they can contaminate you with wrong thoughts, words, and deeds.&lt;/p&gt;

&lt;p&gt;If you can’t remove such a person from your life, then at least limit your exposure to them.&lt;/p&gt;

&lt;h2&gt;
  
  
  💬 Conclusion
&lt;/h2&gt;

&lt;p&gt;Of course, you shouldn’t have only people just like you.&lt;/p&gt;

&lt;p&gt;It’s vital to have some variety in personalities, points of view, backgrounds, goals, and where they are in their journey.&lt;/p&gt;

&lt;p&gt;This way, you are not going to be inside of the bubble that’ll make you believe you’re doing the right thing when in truth, you are about to fail grandiosely.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thank you for reading. If you have any concerns, questions, or opinions regarding this post, please &lt;a href="https://twitter.com/ilonacodes"&gt;reach out to me on Twitter&lt;/a&gt;!&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Pixabay from Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>psychology</category>
      <category>motivation</category>
      <category>networking</category>
    </item>
    <item>
      <title>How to Become an Expert in Your Field</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Sat, 18 Jan 2020 18:44:15 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-become-an-expert-in-your-field-34m8</link>
      <guid>https://dev.to/foundsiders/how-to-become-an-expert-in-your-field-34m8</guid>
      <description>&lt;p&gt;What is the best way to develop a real understanding of something? Should you learn as much as possible about a subject, for instance?&lt;/p&gt;

&lt;p&gt;No, you shouldn't.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The right answer is to start developing a true understanding of an issue and master the basics&lt;/strong&gt; because true mastery is not about doing difficult things, but about mastering the basics.&lt;/p&gt;

&lt;p&gt;According to the &lt;a href="https://asistdl.onlinelibrary.wiley.com/doi/10.1002/asi.24305"&gt;“Developing an empirical measure of everyday information mastering” studies&lt;/a&gt;, the basics make up the foundation of any skill or talent, and the core of any expertise is the solid ground of knowledge about the topic first—the basics.&lt;/p&gt;

&lt;p&gt;In other words, experts will not attempt to dive into more complex theories or methods until they are perfecting the basics. They know that mastery requires constant attention to (and understanding of) the basics.&lt;/p&gt;


&lt;blockquote class="ltag__twitter-tweet"&gt;

  &lt;div class="ltag__twitter-tweet__main"&gt;
    &lt;div class="ltag__twitter-tweet__header"&gt;
      &lt;img class="ltag__twitter-tweet__profile-image" src="https://res.cloudinary.com/practicaldev/image/fetch/s--f5Tqyz4Q--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://pbs.twimg.com/profile_images/2550451333/upr558w4gb7mdgopk0af_normal.jpeg" alt="John Arundel profile image"&gt;
      &lt;div class="ltag__twitter-tweet__full-name"&gt;
        John Arundel
      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__username"&gt;
        &lt;a class="comment-mentioned-user" href="https://dev.to/bitfield"&gt;@bitfield&lt;/a&gt;

      &lt;/div&gt;
      &lt;div class="ltag__twitter-tweet__twitter-logo"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P4t6ys1m--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-f95605061196010f91e64806688390eb1a4dbc9e913682e043eb8b1e06ca484f.svg" alt="twitter logo"&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__body"&gt;
      We all get impatient with 'the basics' and want to get past them, to the secret techniques known only to the masters. But the secret is that there is no secret. Just the same old basics, thoroughly understood and thoughtfully applied. &lt;br&gt;&lt;br&gt;"Mastery is nine times patience."&lt;br&gt;—Le Guin
    &lt;/div&gt;
    &lt;div class="ltag__twitter-tweet__date"&gt;
      00:32 AM - 01 Oct 2019
    &lt;/div&gt;


    &lt;div class="ltag__twitter-tweet__actions"&gt;
      &lt;a href="https://twitter.com/intent/tweet?in_reply_to=1178829885948727296" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WwRENZp4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-reply-action-238fe0a37991706a6880ed13941c3efd6b371e4aefe288fe8e0db85250708bc4.svg" alt="Twitter reply action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/retweet?tweet_id=1178829885948727296" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PFD0MJBa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-retweet-action-632c83532a4e7de573c5c08dbb090ee18b348b13e2793175fea914827bc42046.svg" alt="Twitter retweet action"&gt;
      &lt;/a&gt;
      &lt;a href="https://twitter.com/intent/like?tweet_id=1178829885948727296" class="ltag__twitter-tweet__actions__button"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6wx1BHu3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/twitter-like-action-1ea89f4b87c7d37465b0eb78d51fcb7fe6c03a089805d7ea014ba71365be5171.svg" alt="Twitter like action"&gt;
      &lt;/a&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/blockquote&gt;


&lt;p&gt;So when you have decided to learn something completely new, don't tackle it headlong immediately.&lt;/p&gt;

&lt;p&gt;First, consider the basic elements of the task at hand, and only then start with each less complicated part of it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mastering requires you to use your ability of reasoning.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's about being an active learner rather than a passive recipient of information. It’s about using all your brain’s computing power to make a worthwhile mind map of the idea you want to master.&lt;/p&gt;

&lt;p&gt;You have everything to become an expert at whatever you wish (and quite quickly at that) if you follow the tips below:&lt;/p&gt;

&lt;h2&gt;
  
  
  🙌 Believe in yourself
&lt;/h2&gt;

&lt;p&gt;Being an expert starts with a belief in yourself, not information or accreditation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stop thinking you can’t be an expert. You can.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;All of us can.&lt;/p&gt;

&lt;p&gt;A belief in yourself is how you get started. And it gives you self-approval and motivation to learn the tools you are missing to be an expert because none of us born experts.&lt;/p&gt;

&lt;h2&gt;
  
  
  📚 Acquire information
&lt;/h2&gt;

&lt;p&gt;Start gathering the information through reading, listening, observing, and practicing in the chosen field.&lt;/p&gt;

&lt;p&gt;Just remember that information is all around you, and you can always find it these days using DuckDuckGo, Google, or another search engine. 😜&lt;/p&gt;

&lt;p&gt;Acquire relevant and meaningful information and develop this into knowledge and skills.&lt;/p&gt;

&lt;p&gt;If you are confused about the ways how to learn efficiently, check out these &lt;a href="https://www.educba.com/effective-study-tips/"&gt;study skills on effective learning&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  🎯 Focus on one subject at a time
&lt;/h2&gt;

&lt;p&gt;According to Malcolm Gladwell in &lt;a href="https://www.amazon.com/Outliers-Story-Success-Malcolm-Gladwell/dp/0316017930"&gt;Outliers&lt;/a&gt;, the common feature of experts in any field is 10,000 hours of focused and productive time:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In fact, researchers have settled on what they believe is the magic number for true expertise: ten thousand hours.&lt;br&gt;
― Malcolm Gladwell, Outliers: The Story of Success&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In programming, that's practice 💯&lt;/p&gt;

&lt;p&gt;In any academic field, that's active research, both reading and creating constructive analyses.&lt;/p&gt;

&lt;p&gt;In writing, it's writing, reading editorial feedback, and reading really well-written things.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Whatever it is, 10,000 hours seems to be the key 🔑&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Learn. Practice. Review how you are doing. Learn more where you see gaps. Practice more, especially where you are weak. Iterate.&lt;/p&gt;

&lt;h2&gt;
  
  
  💎 Engage in deliberate practice
&lt;/h2&gt;

&lt;p&gt;Not all practices will make you perfect. For that, you need a particular one—deliberate practice to develop your expertise.&lt;/p&gt;

&lt;p&gt;Because being an expert in something is usually the result of a deliberate effort over a more or less prolonged period of time to improve certain skills in a particular field.&lt;/p&gt;

&lt;p&gt;For example, most people practice and focus on the things they already know how to do. It can even be chores to them.&lt;/p&gt;

&lt;p&gt;But engaging in deliberate practice is quite different. &lt;strong&gt;It considers specific and sustained efforts to do something we cannot do well or even at all.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And the research about improving expert performance shows that only by working at what we cannot do (or don't know how) will turn us into the expert we want to become:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.researchgate.net/publication/236884283_Deliberate_practice_Is_that_all_it_takes_to_become_an_expert"&gt;Deliberate practice: Is that all it takes to become an expert?&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  👩‍🏫 Start teaching others
&lt;/h2&gt;

&lt;p&gt;Teaching others is another excellent way to improve our subject expertise faster.&lt;/p&gt;

&lt;p&gt;Way faster.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It works because this forces us to think through the details. Moreover, it enables us to get new insights from others.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;According to the Learning Pyramid that was developed way back in the 1960s by the NTL Institute in Bethel, Maine, you can see something interesting:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PKv76xRN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/k07f4wt62nn17vwwnzxi.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PKv76xRN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/k07f4wt62nn17vwwnzxi.jpg" alt="Learning Pyramid"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;90% of the gained information learners retain when they teach someone else or when they implement it immediately.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Thus, this way will bring to our mind the information we have previously studied. And it will lead to the longer-lasting acquisition of that information than more time spent passively re-studying.&lt;/p&gt;

&lt;p&gt;Because when we implement or teach, we instantly make mistakes at the beginning. In this case, we need to learn how to correct the mistake, and this forces our brain to concentrate and learn concepts deeper.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;If you want to become an expert, always know that it won't be easy at first.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Yes, it's incredibly hard, but it's undoubtedly possible.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;All you need to do is to continuously gain new and more information about your expertise field, practice over and over again, and put a lot of effort into it.&lt;/p&gt;

&lt;p&gt;These qualities are always needed to become an expert in any field you choose. Even though it takes time and often differs from person to person, you can still become the best if you try hard enough!&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Now, it’s your turn: What would be your top tip or hack on how to become an expert? Please &lt;a href="https://twitter.com/ilonacodes"&gt;reply to me on Twitter&lt;/a&gt;!&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Austin Distel on Unsplash&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>career</category>
      <category>motivation</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to be Less Busy and More Effective</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Thu, 16 Jan 2020 19:06:04 +0000</pubDate>
      <link>https://dev.to/foundsiders/how-to-be-less-busy-and-more-effective-4pje</link>
      <guid>https://dev.to/foundsiders/how-to-be-less-busy-and-more-effective-4pje</guid>
      <description>&lt;p&gt;In our hectic modern world, we believe that rushing from one task to the next and managing multiple priorities shows everyone that we are productive.&lt;/p&gt;

&lt;p&gt;Indeed, because of this cult of busyness, too many of us feel overwhelmed, overworked, and behind their “busy” schedule.&lt;/p&gt;

&lt;p&gt;You, just as many other ambitious people, follow some productivity and time management tips for high-level performance and time optimization.&lt;/p&gt;

&lt;p&gt;However, the result that you are doing more but achieving less.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's going wrong? What is the one million secret on how to be more effective than productive? Which powerful techniques can multiply your productive hours?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe class="tweet-embed" id="tweet-1214182876285145089-523" src="https://platform.twitter.com/embed/Tweet.html?id=1214182876285145089"&gt;
&lt;/iframe&gt;

  // Detect dark theme
  var iframe = document.getElementById('tweet-1214182876285145089-523');
  if (document.body.className.includes('dark-theme')) {
    iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1214182876285145089&amp;amp;theme=dark"
  }



&lt;/p&gt;

&lt;p&gt;Let us have a look at some tips and hack from successful people on how to stretch your time, your effectiveness, and answer these questions in this post.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛑 Quit complaining about how much you have to do
&lt;/h2&gt;

&lt;p&gt;Usually, we complain because we feel powerless to get what we want—just excuses for not doing anything to help your situation. So what we have to do is analyze our complaints before talking about them.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;When you complain, nobody wants to help you.&lt;br&gt;
—Stephen Hawking&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Folks are looking for people who can impact their lives positively, who can inspire them for more. If you complain about your problems most of the time, you have a negative outlook on your situation and life.&lt;/p&gt;

&lt;p&gt;On the other hand, you can complain to yourself about feeling overwhelmed with the demands on your time.&lt;/p&gt;

&lt;p&gt;There is no need for any study to be presented to understand that in general, we spend around 4-5 hours per day on our daily routine tasks like getting dressed, eating, gym, household chores, etc., along with the full-time job. No wonder we cannot get everything that we planned for a day.&lt;/p&gt;

&lt;p&gt;And the #1 question is here: &lt;strong&gt;how can we manage our time better?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The secret is that you should&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Work only on important tasks.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Don't overload your schedule.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Take your daily routine into account.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;During execution, don’t think about all your planned items. Just focus on your current task at hand.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Once that’s done, move on to the next one. Thinking about your whole day of work will drain your mental energy needlessly.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Be busy, but not stressed.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤹‍♀️ Eliminate unimportant activities from your life
&lt;/h2&gt;

&lt;p&gt;Of course, it's easier to say than to do.&lt;/p&gt;

&lt;p&gt;Human nature craves the satisfaction of achievement. We are seeking for results but rarely progress. That's why we often tend to engage in trivial activities first. For example, by taking a course and get a certificate for the accomplishment, learn new 100 Spanish words in a month, and so on.&lt;/p&gt;

&lt;p&gt;It explains the pointless accomplishments of a random activity that does not lead towards our goal—our success.&lt;/p&gt;

&lt;p&gt;The most productive people among us regularly ask themselves which tasks they can eliminate because they &lt;strong&gt;focus on results and know that success is not about the number of tasks you finish, but about their significance.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The advice here is, to begin with&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Multiplying your time by going through everything you do in a day with eliminating mindset;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cutting off unnecessary distractions like the TV, Netflix, or video games to return to the effective mode of operation;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Organizing and prioritizing first the tasks and needs that have to be done to fulfill urgent commitments and are important.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;What is important is seldom urgent, and what is urgent is seldom important.&lt;br&gt;
—Dwight Eisenhower&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With that being said, and with a little bit more effort by using the &lt;a href="https://www.eisenhower.me/eisenhower-matrix/" rel="noopener noreferrer"&gt;Eisenhower Matrix&lt;/a&gt;, prioritizing your tasks based on their urgency will be more comfortable.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fbrh6syceirvtwdz678k8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fthepracticaldev.s3.amazonaws.com%2Fi%2Fbrh6syceirvtwdz678k8.png" alt="Eisenhower Matrix"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ➗ Enhance productivity using the 80/20 rule
&lt;/h2&gt;

&lt;p&gt;The 80/20 rule by Italian economist Vilfredo Pareto states that in any pursuit, 80% of the results will come from 20% of the efforts.&lt;/p&gt;

&lt;p&gt;And highly productive people are&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Trying to identify the most important 20% of their work to maximize efficiency.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Looking at ways to cut down the other 80% of their schedule.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;And finding more time for things that make the biggest impact.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;More about the Pareto principle, you can read &lt;a href="https://en.wikipedia.org/wiki/Pareto_principle" rel="noopener noreferrer"&gt;here&lt;/a&gt;. This method will help you focus. The next step is to take the right action to solve your issues.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ Start working on getting the motivation to continue
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Motivation comes after productivity and not before.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As soon as you planned and prioritized everything, do not try to look for motivation and inspiration right after. Instead, focus on getting started—whether you are motivated or not.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You don’t need to tackle everything at once.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The trouble of getting motivated, it’s often because we are looking at the massive scope of a task or problem at the first glance.&lt;/p&gt;

&lt;p&gt;Just start doing something, and you will find it easier to keep going because taking action is what leads to motivation, which in turn leads to more action from your side.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The man who moves a mountain begins by carrying away small stones.&lt;br&gt;
—Confucius&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  ⏳ Use your “lost” time
&lt;/h2&gt;

&lt;p&gt;Last but not least, and more effectively, is to do your chores while you cannot work on essential tasks.&lt;/p&gt;

&lt;p&gt;Listen to podcasts on your commute. Reply to Whatsapp messages while waiting in line. Read a book while on a plane. Call your doctor for an appointment while waiting for a meeting to start, etc.&lt;/p&gt;

&lt;p&gt;There are endless examples of how you can use “lost” time to get required (but not vital) stuff done.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Gain control of your daily schedule by carefully evaluating your daily activities and determine what can be eliminated, what can be delegated, and what should become a current or future priority.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Know when to take action and when to be patient, focus on your current priority without distractions.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Because productivity will increase with your efficiency and proper time management. You must have heard the phrase:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Winners don't do different things. They do things differently.&lt;br&gt;
—Shiv Khera&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;I hope this post will be useful for you and your success journey.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Perhaps, you would like to share your tips on improving work efficiency, if yes, then don't hesitate to approach me on &lt;a href="https://twitter.com/ilonacodes" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt; or leave a comment below.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Make your best life,&lt;br&gt;
Ilona&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by Rudolf Kirchner from Pexels&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>motivation</category>
      <category>career</category>
      <category>startup</category>
    </item>
    <item>
      <title>Why the Best Designers are Storytellers?</title>
      <dc:creator>Ilona Codes</dc:creator>
      <pubDate>Wed, 15 Jan 2020 18:28:49 +0000</pubDate>
      <link>https://dev.to/foundsiders/why-the-best-designers-are-storytellers-fjk</link>
      <guid>https://dev.to/foundsiders/why-the-best-designers-are-storytellers-fjk</guid>
      <description>&lt;p&gt;People love stories because they tend to impart valuable compelling messages, and are inherited from generation to generation.&lt;/p&gt;

&lt;p&gt;In today’s world, digital transformation is revolutionizing the art of storytelling: &lt;a href="https://blog.walkme.com/how-storytelling-drives-digital-transformation/"&gt;“How the smartest leaders use storytelling to drive digital transformation."&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The most powerful person in the world is the storyteller. The storyteller sets the vision, values, and agenda of an entire generation that is to come.&lt;br&gt;
—Steve Jobs&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  📇 Storytelling in UX design
&lt;/h2&gt;

&lt;p&gt;Heading toward a digital era and using the web and mobile applications, interactivity became an essential part of an excellent user experience. That makes it crucial to apply an interactive storytelling UX strategy to retain user behavior across the digital product.&lt;/p&gt;

&lt;p&gt;Good UX design begins with the words.&lt;/p&gt;

&lt;p&gt;No matter in which part of your application you want to use UX storytelling, the result is to create content that people would be interested in and wish to proceed further.&lt;/p&gt;

&lt;h2&gt;
  
  
  💎 How storytelling impacts product design
&lt;/h2&gt;

&lt;p&gt;Just watch this fascinating talk about how &lt;a href="https://techcircus.io/past_events/michaela-tedore-netflix-storytellling-how-ux-ui-create-a-narrative-around-content/"&gt;Netflix product team creates a narrative around content&lt;/a&gt; to deliver the perfect content in the right format to over 100 million members in 190 countries.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;People connect to stories. And they want to know what comes next, and immediately engage in what you say. Because it's our nature to be intrigued and engaged with stories.&lt;br&gt;
—Michaela Tedore, Product &amp;amp; Motion Design Lead at Netflix&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So storytelling is essential in the world as well as in design, where interfaces are stories, and a product designer is a storyteller.&lt;/p&gt;

&lt;h2&gt;
  
  
  🖼 Storyframes before wireframes
&lt;/h2&gt;

&lt;p&gt;Whether you are designing user onboarding or chatbot conversation or sign up form, think about people who will interact with it first.&lt;/p&gt;

&lt;p&gt;Try to make this user experience memorable, engaging, and interactive with powerful stories to build a long-term relationship with the user.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let’s try to figure out now how to put storytelling into product design:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; The design process starts with creating the persona&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Next, imagine the real-time conversation with that persona and write it down. It's possible to have a few scenarios in the beginning.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; Frame the story by creating some structure—define the order of presenting the information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt; Then provide the story flow—the reason for the user to go further and enjoy this journey by making them curious about what will happen next.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5.&lt;/strong&gt; Make sure that the story is coherent with the product tone of voice, simple, user-friendly, and nice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6.&lt;/strong&gt; And keep the causation. The order of presented information shouldn't be random.&lt;/p&gt;

&lt;p&gt;The point is when visualizing a real-life situation to a virtual world, the channel of communication is changing, but the context remains the same.&lt;/p&gt;

&lt;h2&gt;
  
  
  💭 Keep the user in mind
&lt;/h2&gt;

&lt;p&gt;It's possible to write down everything as a person to person conversation through word-based user experience. Because people still stay in the same place along with their problems, goals, and needs.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;Let's imagine that Alice, your ideal user, and she has a certain problem. So how can your product help her? How would you, as a product maker/designer, talk to her?&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;To answer these questions, this approach described above will help you keep your model persona in mind and write a good narrative.&lt;/p&gt;

&lt;p&gt;This kind of narrative will take the user through the app and evoke the user's feelings as they are using the product. It will hook them to return to your product again and again.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Storytelling helps product designers put themselves in the shoes of the product users.&lt;/p&gt;

&lt;p&gt;When they start thinking from that perspective, they have more information to make a decision that will benefit the user in addition to the product, because the true beauty of great design lies within the solution that a product provides.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Would you like me to make a case study towards a product based on storytelling strategy? Or maybe, you know and want to share a product with a great storytelling user experience? If yes, then reach out to me on &lt;a href="https://twitter.com/ilonacodes"&gt;Twitter&lt;/a&gt; or leave a comment below to start a discussion.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Make your best life,&lt;br&gt;
Ilona&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Photo by &lt;a href="https://www.pexels.com/@suzyhazelwood"&gt;Suzy Hazelwood&lt;/a&gt; from &lt;a href="https://www.pexels.com/"&gt;Pexels&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>design</category>
      <category>ux</category>
      <category>startup</category>
      <category>writing</category>
    </item>
  </channel>
</rss>
