<?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: Ladefuss</title>
    <description>The latest articles on DEV Community by Ladefuss (@ladefuss).</description>
    <link>https://dev.to/ladefuss</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%2F445961%2F7ad1e04c-f7e8-4394-b4e2-f07e158faed6.png</url>
      <title>DEV Community: Ladefuss</title>
      <link>https://dev.to/ladefuss</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ladefuss"/>
    <language>en</language>
    <item>
      <title>So tired of "ERR_SSL_PROTOCOL_ERROR" on localhost</title>
      <dc:creator>Ladefuss</dc:creator>
      <pubDate>Fri, 01 Jan 2021 17:28:35 +0000</pubDate>
      <link>https://dev.to/ladefuss/so-tired-of-errsslprotocolerror-on-localhost-oe</link>
      <guid>https://dev.to/ladefuss/so-tired-of-errsslprotocolerror-on-localhost-oe</guid>
      <description>&lt;p&gt;Every time i clone a repo on a new computer this happens in Google Chrome. Some times setting the flag below usually helps but not always.&lt;/p&gt;

&lt;p&gt;chrome://flags/#allow-insecure-localhost&lt;/p&gt;

&lt;p&gt;Has anyone found a solid solution for this os i can run projects locally without certificates?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What software to use for managing software lifecycle?</title>
      <dc:creator>Ladefuss</dc:creator>
      <pubDate>Thu, 15 Oct 2020 20:28:52 +0000</pubDate>
      <link>https://dev.to/ladefuss/what-software-to-use-for-managing-software-lifecycle-32np</link>
      <guid>https://dev.to/ladefuss/what-software-to-use-for-managing-software-lifecycle-32np</guid>
      <description>&lt;p&gt;Is there a piece of software that will let a small team manage patches, versions and rollouts for a software product?&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>devops</category>
    </item>
    <item>
      <title>Debug Bootstrap 4 breakpoints with Sass</title>
      <dc:creator>Ladefuss</dc:creator>
      <pubDate>Tue, 04 Aug 2020 14:13:33 +0000</pubDate>
      <link>https://dev.to/ladefuss/debug-bootstrap-breakpoints-with-sass-cde</link>
      <guid>https://dev.to/ladefuss/debug-bootstrap-breakpoints-with-sass-cde</guid>
      <description>&lt;p&gt;Use this block of sass code to add a tiny indicator in the bottom left corner of the browser that will show the current active breakpoint whenever the class "debug" is added to the body tag.&lt;/p&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

body {

  &amp;amp;.debug {

    &amp;amp;:before {
      position: fixed;
      bottom: 0;
      left: 0;
      color: white;
      z-index: 99;
      padding: 10px;

      @include media-breakpoint-down(xs) {
        content: 'to xs';
        background: yellow;
      } 
      @include media-breakpoint-between(xs, sm) {
        content: 'xs to sm';
        background: navy;
      } 
      @include media-breakpoint-between(sm, md) {
        content: 'sm to md';
        background: black;
      }
      @include media-breakpoint-between(md, lg) {
        content: 'md to lg';
        background: green;
      }
      @include media-breakpoint-up(lg) {
        content: 'from lg';
        background: red;
      }
    }
  }

}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

</description>
      <category>saas</category>
      <category>bootstrap</category>
    </item>
  </channel>
</rss>
