<?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>Forem: Yurii Martynchuk</title>
    <description>The latest articles on Forem by Yurii Martynchuk (@martynchuk).</description>
    <link>https://forem.com/martynchuk</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%2F1080207%2F83043fb2-aceb-4182-9d66-732419defea1.jpg</url>
      <title>Forem: Yurii Martynchuk</title>
      <link>https://forem.com/martynchuk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/martynchuk"/>
    <language>en</language>
    <item>
      <title>Copy SSH key to Clipboard</title>
      <dc:creator>Yurii Martynchuk</dc:creator>
      <pubDate>Fri, 19 May 2023 10:28:54 +0000</pubDate>
      <link>https://forem.com/martynchuk/copy-ssh-key-to-clipboard-77k</link>
      <guid>https://forem.com/martynchuk/copy-ssh-key-to-clipboard-77k</guid>
      <description>&lt;p&gt;This is a short guide on how to copy your ssh key to the clipboard.&lt;/p&gt;

&lt;p&gt;Mac&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pbcopy &amp;lt; ~/.ssh/id_rsa.pub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Linux (Ubuntu, Debian)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cat ~/.ssh/id_rsa.pub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Windows (Git Bash)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;clip &amp;lt; ~/.ssh/id_rsa.pub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ssh</category>
    </item>
    <item>
      <title>Laravel .htaccess</title>
      <dc:creator>Yurii Martynchuk</dc:creator>
      <pubDate>Wed, 10 May 2023 12:04:42 +0000</pubDate>
      <link>https://forem.com/martynchuk/laravel-htaccess-4c83</link>
      <guid>https://forem.com/martynchuk/laravel-htaccess-4c83</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;
RewriteEngine On
RewriteBase /

RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

RewriteCond %{REQUEST_URI} !/public
RewriteRule ^(.*)$ public/$1 [L]
&amp;lt;/IfModule&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>laravel</category>
      <category>apache2</category>
      <category>ssl</category>
    </item>
  </channel>
</rss>
