<?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: John</title>
    <description>The latest articles on DEV Community by John (@johnfromme).</description>
    <link>https://dev.to/johnfromme</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%2F467714%2F81b3aac7-e60c-4822-b8ca-8f083f3bf97f.jpeg</url>
      <title>DEV Community: John</title>
      <link>https://dev.to/johnfromme</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/johnfromme"/>
    <language>en</language>
    <item>
      <title>Making my project Password-less! 🚫🔑</title>
      <dc:creator>John</dc:creator>
      <pubDate>Wed, 30 Sep 2020 23:00:49 +0000</pubDate>
      <link>https://dev.to/johnfromme/making-my-project-password-less-28kl</link>
      <guid>https://dev.to/johnfromme/making-my-project-password-less-28kl</guid>
      <description>&lt;p&gt;&lt;strong&gt;Welcome Back&lt;/strong&gt;, 🖐&lt;/p&gt;

&lt;p&gt;In this article I'm going to explain why I will &lt;strong&gt;not&lt;/strong&gt; use a standard Sign-in/Sign-up method for app authentication!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Ready?&lt;/em&gt; Lets get started 😁&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Why&lt;/strong&gt; we're going Password-less:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;💾 Passwords take away a lot of storage that could be used to store something else.&lt;/li&gt;
&lt;li&gt;🔑 Everyone knows this, people use the same passwords for multiple websites/apps.&lt;/li&gt;
&lt;li&gt;🤔 People forget there passwords from time to time, this means you will need to create a re-set password system.&lt;/li&gt;
&lt;li&gt;🚀 Big technology company's are doing the same, I don't really like looking at what others are doing but if you do a quick Google search on tech companies going Password-less you will find a lot of information.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  What do I mean when I say &lt;strong&gt;Password-less&lt;/strong&gt;?
&lt;/h3&gt;

&lt;p&gt;When a new user creates an account they will not be able to create a Password! &lt;em&gt;Simple right?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How do users sign-in?&lt;/strong&gt;&lt;br&gt;
On the sign-in form the user will enter there Email Address or Phone Number they used to create there account, after they clicked "Sign in" the backend server will send a 6-8 digit code to there Phone number or Email Address depending on witch one they entered. Next a text input will display where the user can enter the code they received.&lt;/p&gt;

&lt;p&gt;Creating a Password-less app is way easier to build and manage then one with passwords, at lest in my opinion! ✌️&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I would love to hear what you have to say, lets talk in the &lt;strong&gt;Comments&lt;/strong&gt;!!!&lt;/em&gt; 😀&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>php</category>
      <category>serverless</category>
      <category>redis</category>
    </item>
    <item>
      <title>DynamoDB or PostgreSQL???</title>
      <dc:creator>John</dc:creator>
      <pubDate>Tue, 29 Sep 2020 19:20:23 +0000</pubDate>
      <link>https://dev.to/johnfromme/dynamodb-or-postgresql-15a5</link>
      <guid>https://dev.to/johnfromme/dynamodb-or-postgresql-15a5</guid>
      <description>&lt;p&gt;I love both but don't know witch to use for my project!&lt;/p&gt;

&lt;p&gt;I've already made the decision not to use &lt;em&gt;MySQL&lt;/em&gt; but I also don't want to be locked when migrating out of AWS if I ever need to when using &lt;em&gt;DynamoDB&lt;/em&gt;. Using &lt;em&gt;PostgreSQL&lt;/em&gt; could potentially be more expensive in the start if I use AWS RDS!&lt;/p&gt;

&lt;p&gt;A solution might be to have a LightSail or EC2 instance run both &lt;em&gt;PostgreSQL&lt;/em&gt; and the application, but is this a good idea?&lt;/p&gt;

&lt;p&gt;What do &lt;strong&gt;you&lt;/strong&gt; think?&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>sql</category>
      <category>postgres</category>
      <category>aws</category>
    </item>
    <item>
      <title>Building a Blogging Platform, but Why?</title>
      <dc:creator>John</dc:creator>
      <pubDate>Wed, 23 Sep 2020 00:34:41 +0000</pubDate>
      <link>https://dev.to/johnfromme/building-a-blogging-platform-but-why-41mf</link>
      <guid>https://dev.to/johnfromme/building-a-blogging-platform-but-why-41mf</guid>
      <description>&lt;p&gt;&lt;strong&gt;Hey&lt;/strong&gt; everyone, ✌️&lt;br&gt;
Hope your all having a great day!&lt;/p&gt;

&lt;p&gt;This is my first DEV post so I'm super excited to share what I'm currently working on.&lt;/p&gt;

&lt;p&gt;From the &lt;strong&gt;Title&lt;/strong&gt; you can probably guess what this post is about so why am I building a Blogging Platform?&lt;/p&gt;

&lt;p&gt;Because, why not? Just kidding the answer isn't so simple, recently I've been looking for a static site generator, although there are many great solutions I really wanted a lightweight, highly customizable, simple to use &amp;amp; a framework that is 100% dedicated to blogging.&lt;br&gt;
Turns out that I could not find a solution that I was satisfied with!&lt;/p&gt;

&lt;p&gt;So what features will my blogging platform have that others don't? - See down below!&lt;/p&gt;

&lt;h1&gt;
  
  
  Features
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Open Source with the MIT License&lt;/li&gt;
&lt;li&gt;Default Config options for Amplify, Cloudflare Workers Sites, Docker with nginx, Firebase, GitHub Pages, GitLab Pages, Netlify, Render, Surge &amp;amp; Vercel - Wow, 😳 that's a lot of Hosting Providers&lt;/li&gt;
&lt;li&gt;Easy installation from NPM&lt;/li&gt;
&lt;li&gt;Automatic SEO&lt;/li&gt;
&lt;li&gt;Prebuilt theme with customization options or if you'd like you can just create a theme from scratch if that's something your into&lt;/li&gt;
&lt;li&gt;Simple Prebuilt website UI&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And more...&lt;/p&gt;

&lt;p&gt;Obviously this project is not public yet, but I hope to release it to Github as soon as possible!&lt;/p&gt;

&lt;p&gt;As always have fun!!! 🥳&lt;/p&gt;

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