<?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: Leticia Amancio</title>
    <description>The latest articles on DEV Community by Leticia Amancio (@lleamancio).</description>
    <link>https://dev.to/lleamancio</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%2F981419%2F8adbf9b2-afb3-4db2-9475-c32ef215efe4.jpeg</url>
      <title>DEV Community: Leticia Amancio</title>
      <link>https://dev.to/lleamancio</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lleamancio"/>
    <language>en</language>
    <item>
      <title>Codes for daily life</title>
      <dc:creator>Leticia Amancio</dc:creator>
      <pubDate>Tue, 14 Mar 2023 01:23:30 +0000</pubDate>
      <link>https://dev.to/lleamancio/codes-for-daily-life-3eh5</link>
      <guid>https://dev.to/lleamancio/codes-for-daily-life-3eh5</guid>
      <description>&lt;p&gt;This post is in construction, i wanna increase more codes that i use in my day by day.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Remove Duplicate Elements&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Recently, i needed to group by identical products and sum your prices that received in list. First, i remove duplicate product id and then i group by id.&lt;/p&gt;

&lt;p&gt;To remove duplicates values, do this:&lt;/p&gt;

&lt;p&gt;`const removeDuplicates = (arr) =&amp;gt; [...new Set(arr)];&lt;/p&gt;

&lt;p&gt;const productsId = ["17", "27", "17", "40"];&lt;/p&gt;

&lt;p&gt;removeDuplicates(productsId); // ['17', '27', '40']&lt;br&gt;
`&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Uppercase first letter&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Who has never needed put first letter in uppercase to show in page, do this:&lt;/p&gt;

&lt;p&gt;const capitalize = (str) =&amp;gt; &lt;code&gt;${str.charAt(0).toUpperCase()}${str.slice(1)}&lt;/code&gt;;&lt;/p&gt;

&lt;p&gt;......&lt;/p&gt;

&lt;p&gt;Updates will be coming soon&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>My vs code extensions</title>
      <dc:creator>Leticia Amancio</dc:creator>
      <pubDate>Fri, 24 Feb 2023 00:58:32 +0000</pubDate>
      <link>https://dev.to/lleamancio/my-vs-code-extensions-52kd</link>
      <guid>https://dev.to/lleamancio/my-vs-code-extensions-52kd</guid>
      <description>&lt;p&gt;In this article, i want to show the extensions that helped me in the development of React Applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live Share&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TyZKxrCT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/alfisrrjiflq5q5ybmfn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TyZKxrCT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/alfisrrjiflq5q5ybmfn.png" alt="Image description" width="880" height="374"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This extensions is very good for share the code in real time with another person, without the need to commit the code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Material Icon Theme&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YuvYQWFy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wh37p3px9luzeaombwo3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YuvYQWFy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wh37p3px9luzeaombwo3.png" alt="Image description" width="880" height="541"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This extensions it was the first to be installed to help identify the folders and icons.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live Server&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ryjjSnfb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/49rx0czr1vxdm1443eu8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ryjjSnfb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/49rx0czr1vxdm1443eu8.png" alt="Image description" width="709" height="330"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is very important to run the pages on browser, fast and easy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Code Runner&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Tml2suJ9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/api5rvx3gl0yy9mqzrbv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Tml2suJ9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/api5rvx3gl0yy9mqzrbv.png" alt="Image description" width="764" height="294"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Run code snippet or code file for multiple languages, this for run javascript file its very good&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;ESLint&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cW-YsyxA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rwksbfj3bkoswwcalv65.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cW-YsyxA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rwksbfj3bkoswwcalv65.png" alt="Image description" width="627" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the front-end development we have specifics with lint in the files, use this extensions for lint.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Jest&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zZZilbxt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lg9kgo5s53hoctf2h1e6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zZZilbxt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/lg9kgo5s53hoctf2h1e6.png" alt="Image description" width="629" height="356"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Testing is a part that requires a lot of attention, this extensions help for debug, run only one test and many others things.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitLeans&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--0ar7RDsx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1hq753t8dhlvxx3yiyd3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0ar7RDsx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1hq753t8dhlvxx3yiyd3.png" alt="Image description" width="710" height="352"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To complete my setup in vscode, this extensions to help with git.&lt;/p&gt;

&lt;p&gt;So, i like to get to know and test other extensions and add to my vscode.&lt;/p&gt;

&lt;p&gt;I thank all the people who add to my new journey with front&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>vscode</category>
      <category>vscodeextension</category>
    </item>
    <item>
      <title>Part 1 - Fullstack Journey</title>
      <dc:creator>Leticia Amancio</dc:creator>
      <pubDate>Wed, 14 Dec 2022 02:28:44 +0000</pubDate>
      <link>https://dev.to/lleamancio/part-1-fullstack-journey-2o44</link>
      <guid>https://dev.to/lleamancio/part-1-fullstack-journey-2o44</guid>
      <description>&lt;p&gt;Steps: &lt;br&gt;
-&amp;gt; &lt;strong&gt;Learn Frontend Development&lt;/strong&gt;&lt;br&gt;
-&amp;gt; Learn Backend Development&lt;br&gt;
-&amp;gt; Databases&lt;br&gt;
-&amp;gt; Deployment&lt;/p&gt;

&lt;p&gt;At this moment we are starting from zero the studies with frontend. &lt;/p&gt;

&lt;p&gt;Since my knowledge with frontend is basic in creating Wordpress pages, static sites, making occasional changes, Carolina referred me to this course (Curso Web Moderno Completo com JavaScript 2022 + Projetos).&lt;/p&gt;

&lt;p&gt;There are many classes to attend, so far I have done some exercises in Javascript fundamentals.&lt;/p&gt;

&lt;p&gt;Check it out: (&lt;a href="https://github.com/lleamancio/exercise-frontend" rel="noopener noreferrer"&gt;Link&lt;/a&gt;)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Basic Organization of a JS Code&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Running JavaScript&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Var, Let and Const&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Weak Typing&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Types in JavaScript: Number, String, Boolean, Array, Object&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Understanding Null &amp;amp; Undefined&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Functions&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My routine is fitting in with my English studies, I believe in the next part we will have pages being created.&lt;/p&gt;

&lt;p&gt;Lets go to next level!!!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4x0xo3qu8yaypcebdzvo.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4x0xo3qu8yaypcebdzvo.gif" alt="Image description" width="480" height="269"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>githubcopilot</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Choose your journey</title>
      <dc:creator>Leticia Amancio</dc:creator>
      <pubDate>Tue, 29 Nov 2022 18:24:44 +0000</pubDate>
      <link>https://dev.to/lleamancio/choose-your-journey-2e1n</link>
      <guid>https://dev.to/lleamancio/choose-your-journey-2e1n</guid>
      <description>&lt;p&gt;In my first post, i decided to write about my journey in programming. For many people, programming is very hard, and you might think that you will never become a good programmer. Is there a magic formula to become a good programmer?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft49orodmvye3c79o6rx1.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft49orodmvye3c79o6rx1.gif" alt="Image description" width="500" height="186"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the start of my career i worked with tech support, i discover the universe of hardware, how every component works, how the operational system is integrated with hardware, how use linux to do server backups, entering the server rooms (which were too cold kkkkk). Starting my carrer on infrastructure, gave me foundation to start programming, i grateful to Lin and Ezequiel to showing me Linux, which helped me a lot in programming.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2o4kr5nnj6uiybvwefy8.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2o4kr5nnj6uiybvwefy8.gif" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Since 2017, i work with programming, i started with Java and its frameworks, on college i did Computer Enginnering, the programming part i learn on online courses, groups of study, i also participated in many initiatives that taught programming to help you get your first job as a programmer. I had few projects with frontend. Now i focus in become a fullstack.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flv9okn9tu5tdjmd1nsp1.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flv9okn9tu5tdjmd1nsp1.gif" alt="Image description" width="498" height="277"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;On every step in my journey with programmer, i never found a  magic formula, i was afraid too in the beginning, but i organized myself for my goal. Honestly, the best thing i ever did, was to create a roadmap (I wrote in the paper). First, i create with the following logic:&lt;/p&gt;

&lt;p&gt;-&amp;gt; Hardware&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;S.O (Types of S.O)&lt;/li&gt;
&lt;li&gt;RAM/DISK&lt;/li&gt;
&lt;li&gt;Servers&lt;/li&gt;
&lt;li&gt;HTTP/HTTPS/FTP/SSL/TLS/SSH&lt;/li&gt;
&lt;li&gt;Virtual Machines&lt;/li&gt;
&lt;li&gt;Load Balance
.......(the list was endless)
-&amp;gt; Software&lt;/li&gt;
&lt;li&gt;Programming Logic&lt;/li&gt;
&lt;li&gt;Programming Languages&lt;/li&gt;
&lt;li&gt;Relational Databases&lt;/li&gt;
&lt;li&gt;HTML/CSS&lt;/li&gt;
&lt;li&gt;REST/SOAP
.......(the list was endless)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I put so many things in the paper, things i did not need to look first but it worked. After, i discover &lt;a href="https://roadmap.sh/" rel="noopener noreferrer"&gt;roadmap.sh&lt;/a&gt;, brought more security where i should go.&lt;/p&gt;

&lt;p&gt;If you is starting now, i recommend see the &lt;a href="https://roadmap.sh/" rel="noopener noreferrer"&gt;roadmap.sh&lt;/a&gt;, create your portfolio, join in programming communities, share your thoughts in the communities, i am sure that by organizing your studies and programming everyday the magic will happen!!&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>learning</category>
      <category>development</category>
    </item>
  </channel>
</rss>
