<?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: Yuri Reimers</title>
    <description>The latest articles on DEV Community by Yuri Reimers (@yirs1016).</description>
    <link>https://dev.to/yirs1016</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%2F1279213%2F72a45d21-3740-4845-8e7e-08162c36beef.png</url>
      <title>DEV Community: Yuri Reimers</title>
      <link>https://dev.to/yirs1016</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yirs1016"/>
    <language>en</language>
    <item>
      <title>Intro to Flask</title>
      <dc:creator>Yuri Reimers</dc:creator>
      <pubDate>Mon, 15 Apr 2024 13:23:17 +0000</pubDate>
      <link>https://dev.to/yirs1016/intro-to-flask-4idh</link>
      <guid>https://dev.to/yirs1016/intro-to-flask-4idh</guid>
      <description>&lt;p&gt;Today, we will be diving into Flask concepts and best practices.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;First we must import SQLAlchemy.
from flask_sqlalchemy import SQLAlchemy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;class Employee(db.Model):&lt;br&gt;
    &lt;strong&gt;tablename&lt;/strong&gt; = 'soccer_positions'&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;id = db.Column(db.Integer, primary_key=True)
position1 = db.Column(db.String)
position2 = db.Column(db.String)
position3 = db.Column(db.String)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;When we are creating a table. We always start with an id to keep track of our table columns.As listed above, we use the id.Integer to show that our id can only be a number/integer and not a text. The next line, we give the variable a name and use db.Column. Could you guess what does the db.Column is for. If you guessed that we use this to create another column in the soccer_positions table, you are correct. Just like db.Integer, we use db.String to make sure that our column can only be a string. Take some time and get some practice with the basics. Next we will talk about relationships between tables.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Python fundamentals</title>
      <dc:creator>Yuri Reimers</dc:creator>
      <pubDate>Mon, 25 Mar 2024 06:28:09 +0000</pubDate>
      <link>https://dev.to/yirs1016/python-fundamentals-5fej</link>
      <guid>https://dev.to/yirs1016/python-fundamentals-5fej</guid>
      <description>&lt;p&gt;For me, when I started my coding journey. I started with javascript for 6 weeks and then I started to learn python. Although, I felt more confident in my coding ability and learning how the computer reads code, I found it a bit tricky to learn the new syntaxes of Python. Below I have some examples of the basic of Python.&lt;/p&gt;

&lt;p&gt;list: candy = ['Sour Patch', 'Skittles', 'Starburst']&lt;br&gt;
tuple: candy = ('Sour Patch', 'Skittles', 'Starburst')&lt;br&gt;
set:   candy = {'Sour Patch', 'Skittles', 'Starburst'}&lt;/p&gt;

&lt;p&gt;As you can see, my variable name is candy and I have shown you the different syntaxes between 3 data structures. Make sure that the names inside how '' or "". Making quotations will make sure that it is shown as a string so python can read the code. &lt;/p&gt;

&lt;p&gt;Be sure to experiment in your python shell to test out the different data structures. You can use the type function to get comfortable with the different rules of each data_structure.&lt;/p&gt;

&lt;p&gt;type(candy = ['Sour Patch', 'Skittles', 'Starburst'])&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>python</category>
    </item>
    <item>
      <title>Intro to React</title>
      <dc:creator>Yuri Reimers</dc:creator>
      <pubDate>Thu, 29 Feb 2024 04:34:44 +0000</pubDate>
      <link>https://dev.to/yirs1016/intro-to-react-3p5h</link>
      <guid>https://dev.to/yirs1016/intro-to-react-3p5h</guid>
      <description>&lt;p&gt;Now that we have learned the fundamentals of javascript, it's time to learn how to rewrite our code in React. The basics of React is that what we would call a function is now called a component. Components names are capitalized. In React, we write code a lot simpler and create our elements from html all in react. With our components, when we hear the term render or rendering. It usually refers to us returning some code. Below, we have an example of what the difference of vanilla javascript and React is&lt;br&gt;
Javascript -&lt;br&gt;
function basicOf(){&lt;br&gt;
const tool = document.createElement('div')&lt;br&gt;
}&lt;br&gt;
React&lt;br&gt;
function BasicOf(){&lt;br&gt;
return(&lt;br&gt;
  &lt;/p&gt;My code.&lt;br&gt;
}

&lt;p&gt;You can see that in React. You can use the div tag as if it was an html file.&lt;/p&gt;

</description>
      <category>react</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Intro to Software Engineering</title>
      <dc:creator>Yuri Reimers</dc:creator>
      <pubDate>Mon, 12 Feb 2024 17:23:38 +0000</pubDate>
      <link>https://dev.to/yirs1016/intro-to-software-engineering-46c2</link>
      <guid>https://dev.to/yirs1016/intro-to-software-engineering-46c2</guid>
      <description>&lt;p&gt;I know what we all are thinking, coding is impossible, it doesn't make sense, how can someone like me learn something as difficult as coding. I had the same thoughts that we all have. I recently started learning javascript and I am surprised at how much I have learned. I am no different than anyone else.&lt;br&gt;
As a beginner guide to get more comfortable with coding fundamentals, we should all ask ourselves the basic questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;How do we declare a variable?
We use 3 keywords that lets the program know that these are variables. We then give our variable a name followed by the equal sign.&lt;/li&gt;
&lt;li&gt;const name1 =&lt;/li&gt;
&lt;li&gt;let name2 =&lt;/li&gt;
&lt;li&gt;&lt;p&gt;var name3 =&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How do we assign a value to that variable?&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Our value comes after the equal sign. We can have a number or a string as a value&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;What is a string?&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Are words/letters that are between quotation marks&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;"My name"&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;'your name'&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you put all of these together. You can get a variable with a value. For example:&lt;/p&gt;

&lt;p&gt;const variableName = 'Mike'&lt;/p&gt;

&lt;p&gt;'Mike' is the value of variableNames. So every time you write the variableNames. The value will return of 'Mike'.&lt;/p&gt;

&lt;p&gt;const variableName = 'Mike'&lt;br&gt;
console.log(variableName)&lt;/p&gt;

&lt;p&gt;The console should return Mike&lt;/p&gt;

&lt;p&gt;If you practice the basic fundamentals of javascript. You will start to get more comfortable with the basics of coding.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
