<?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: Richmond</title>
    <description>The latest articles on DEV Community by Richmond (@richmondgozarin).</description>
    <link>https://dev.to/richmondgozarin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F384027%2Ff810e27c-b2d6-4fc9-a928-e6ccf53340d0.jpeg</url>
      <title>DEV Community: Richmond</title>
      <link>https://dev.to/richmondgozarin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/richmondgozarin"/>
    <language>en</language>
    <item>
      <title>2021 Workspace Setup</title>
      <dc:creator>Richmond</dc:creator>
      <pubDate>Mon, 07 Jun 2021 02:50:42 +0000</pubDate>
      <link>https://dev.to/richmondgozarin/2021-workspace-setup-1ajn</link>
      <guid>https://dev.to/richmondgozarin/2021-workspace-setup-1ajn</guid>
      <description>&lt;p&gt;Sharing with you my workspace setup for the year&lt;/p&gt;

</description>
      <category>workspace</category>
    </item>
    <item>
      <title>Mobile Touch Hover Event &amp; Disable Text Selection, Copy, Cut, Paste</title>
      <dc:creator>Richmond</dc:creator>
      <pubDate>Thu, 11 Jun 2020 02:30:59 +0000</pubDate>
      <link>https://dev.to/richmondgozarin/mobile-touch-hover-event-disable-text-selection-copy-cut-paste-1od1</link>
      <guid>https://dev.to/richmondgozarin/mobile-touch-hover-event-disable-text-selection-copy-cut-paste-1od1</guid>
      <description>&lt;p&gt;No matter what is the reason for disabling user-selection on your app, if you have come to that step, this is the right place to learn how to that with CSS&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
  &amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
      &amp;lt;title&amp;gt;Title of the document&amp;lt;/title&amp;gt;
      &amp;lt;style&amp;gt; 
        .not-user-selectable { 
          -webkit-user-select: none; 
          -webkit-touch-callout: none; 
          -moz-user-select: none; 
          -ms-user-select: none; 
          user-select: none;    
          color: #cc0000;
        } 
      &amp;lt;/style&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
      &amp;lt;p&amp;gt;I am a selectable text. You can select me.&amp;lt;/p&amp;gt;
      &amp;lt;div class="not-user-selectable"&amp;gt;I am an unselectable text. My 
      text selection is disabled.&amp;lt;/div&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;For handling pressed state in mobile, we can use &lt;code&gt;:hover&lt;/code&gt; css selector. When you try to use in mobile UI the &lt;code&gt;:hover&lt;/code&gt; will negate desktop functionality and use the tap behavoir.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;amp;:hover {
    background: green;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Install the openSSL version of cURL on Mac</title>
      <dc:creator>Richmond</dc:creator>
      <pubDate>Thu, 14 May 2020 15:35:18 +0000</pubDate>
      <link>https://dev.to/richmondgozarin/install-the-openssl-version-of-curl-on-mac-c0e</link>
      <guid>https://dev.to/richmondgozarin/install-the-openssl-version-of-curl-on-mac-c0e</guid>
      <description>&lt;p&gt;Recently, I needed to update my cURL to run apple push notification api but it depends on HTTP/2 protocol which my cURL is not supported.&lt;/p&gt;

&lt;p&gt;I'll go straight to the point: &lt;a href="https://github.com/Homebrew/homebrew-core/issues/31510"&gt;Homebrew team remove all options from homebrew core.&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  To switch:
&lt;/h1&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    $ brew upgrade
    $ brew uninstall curl
    $ brew install curl-openssl
    $ echo 'export PATH="/usr/local/opt/curl-openssl/bin:$PATH"' &amp;gt;&amp;gt; ~/.zshrc
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Benefits of Working remotely</title>
      <dc:creator>Richmond</dc:creator>
      <pubDate>Mon, 11 May 2020 15:37:46 +0000</pubDate>
      <link>https://dev.to/richmondgozarin/d-418m</link>
      <guid>https://dev.to/richmondgozarin/d-418m</guid>
      <description>&lt;p&gt;Can set your own time, &lt;br&gt;
zero travel cost,&lt;br&gt;
Avoid people,&lt;br&gt;
Can work even you're not properly dressed up!&lt;/p&gt;

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