<?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: Lavinia</title>
    <description>The latest articles on Forem by Lavinia (@laviku).</description>
    <link>https://forem.com/laviku</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%2F40106%2Fdb245800-28e0-4f78-b7b8-b413dd7f5f05.jpg</url>
      <title>Forem: Lavinia</title>
      <link>https://forem.com/laviku</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/laviku"/>
    <language>en</language>
    <item>
      <title>Dropdown Component for main menu ~ Laravel/Breeze ~ Tailwind</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Sun, 17 Jan 2021 03:41:59 +0000</pubDate>
      <link>https://forem.com/laviku/dropdown-component-for-main-menu-laravel-breeze-tailwind-2a26</link>
      <guid>https://forem.com/laviku/dropdown-component-for-main-menu-laravel-breeze-tailwind-2a26</guid>
      <description>&lt;p&gt;Currently, I'm working on a project using Laravel, I haven't used Laravel since version 5, I think, also I stopped programming for about a year for different personal reasons. &lt;/p&gt;

&lt;p&gt;The thing is that a lot of things have changed and one of them is that now Laravel has this package to manage the authentication process: &lt;a href="https://laravel.com/docs/8.x/starter-kits#laravel-breeze" rel="noopener noreferrer"&gt;Laravel/Breeze&lt;/a&gt;. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Puedes leer la versión en Español en mi &lt;a href="https://laviku.tech/componente-para-sub-menu-laravel-breeze-tailwind/" rel="noopener noreferrer"&gt;blog&lt;/a&gt;. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I had some issues at the beginning because I didn't have the latest version of PHP, but after I solved them I was able to focus on the next steps. Tailwind is something really new for me and Laravel/Breeze is working with templates and styles using that library, but one thing that is missing is the "sub-menu" for the main links. &lt;/p&gt;

&lt;p&gt;The menu has the option to have a drop-down for the user actions on the right side: &lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F937h7timucgpkaz1wn5a.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F937h7timucgpkaz1wn5a.jpg" alt="Laravel Breeze Menu"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For the project I'm working on, I need to have a sub-menu for some of the main menu items: &lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F841hsh7n8xjg9vjdgitn.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F841hsh7n8xjg9vjdgitn.jpg" alt="Laravel Breeze with Menu and Sub Menu"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Components
&lt;/h3&gt;

&lt;p&gt;Following the same logic of the original components, I've created two components:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;nav-link-parent.blade.php&lt;/strong&gt;&lt;/p&gt;

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

@props(['active'])

@php
$classes = ($active ?? false)
            ? 'parent-nav inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-semibold leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out cursor-pointer relative'
            : 'parent-nav inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-semibold leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out cursor-pointer relative';
@endphp

&amp;lt;div x-data="{ open: false }" @click.away="open = false" @close.stop="open = false" @click="open = ! open" {{ $attributes-&amp;gt;merge(['class' =&amp;gt; $classes]) }} &amp;gt;
    &amp;lt;div&amp;gt;
        {{ $name }}

        &amp;lt;div class="ml-1 inline-block relative top-1"&amp;gt;
            &amp;lt;svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"&amp;gt;
                &amp;lt;path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /&amp;gt;
            &amp;lt;/svg&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;

    &amp;lt;div class="children border border-gray-300" 
    x-show="open"
    x-transition:enter="transition ease-out duration-200"
    x-transition:enter-start="transform opacity-0 scale-95"
    x-transition:enter-end="transform opacity-100 scale-100"
    x-transition:leave="transition ease-in duration-75"
    x-transition:leave-start="transform opacity-100 scale-100"
    x-transition:leave-end="transform opacity-0 scale-95"&amp;gt;
        {{ $children }}
    &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;responsive-nav-link-parent.blade.php&lt;/strong&gt;&lt;/p&gt;


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

&lt;p&gt;@props(['active'])&lt;/p&gt;

&lt;p&gt;@php&lt;br&gt;
$classes = ($active ?? false)&lt;br&gt;
            ? 'parent-nav inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-semibold leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'&lt;br&gt;
            : 'parent-nav inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-semibold leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out';&lt;br&gt;
@endphp&lt;/p&gt;

&lt;p&gt;@props(['active'])&lt;/p&gt;

&lt;p&gt;@php&lt;br&gt;
$classes = ($active ?? false)&lt;br&gt;
            ? 'parent-nav block pl-3 pr-4 py-2 border-l-4 border-indigo-400 text-base font-semibold text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out'&lt;br&gt;
            : 'parent-nav block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-semibold text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition duration-150 ease-in-out';&lt;br&gt;
@endphp&lt;/p&gt;

&lt;p&gt;&amp;lt;div x-data="{ open: false }" @click.away="open = false" @close.stop="open = false" @click="open = ! open" {{ $attributes-&amp;gt;merge(['class' =&amp;gt; $classes]) }} &amp;gt;&lt;br&gt;
    &amp;lt;div&amp;gt;&lt;br&gt;
        {{ $name }}&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    &amp;amp;lt;div class="ml-1 inline-block relative top-1"&amp;amp;gt;
        &amp;amp;lt;svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"&amp;amp;gt;
            &amp;amp;lt;path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /&amp;amp;gt;
        &amp;amp;lt;/svg&amp;amp;gt;
    &amp;amp;lt;/div&amp;amp;gt;
&amp;amp;lt;/div&amp;amp;gt;

&amp;amp;lt;div class="children border border-gray-300 mt-3" 
x-show="open"
x-transition:enter="transition ease-out duration-200"
x-transition:enter-start="transform opacity-0 scale-95"
x-transition:enter-end="transform opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="transform opacity-100 scale-100"
x-transition:leave-end="transform opacity-0 scale-95"&amp;amp;gt;
    {{ $children }}
&amp;amp;lt;/div&amp;amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  Style&lt;br&gt;
&lt;/h3&gt;

&lt;p&gt;Some CSS to set the right position for the elements.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;app.css&lt;/strong&gt;&lt;/p&gt;


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

&lt;p&gt;.children {&lt;br&gt;
    background: #fff;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.children a,&lt;br&gt;
.children .separator {&lt;br&gt;
    display: block;&lt;br&gt;
    margin: 5px 0px;&lt;br&gt;
    padding: 5px 10px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.children .separator {&lt;br&gt;
    border-top-width: 2px;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;.children a:hover {&lt;br&gt;
    color: #818cf8;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;@media (min-width: 768px) {&lt;br&gt;
    .children {&lt;br&gt;
        position: absolute;&lt;br&gt;
        width: 155px;&lt;br&gt;
        top: 70px;&lt;br&gt;
    }&lt;br&gt;
}&lt;/p&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  Update the Navigation layout&lt;br&gt;
&lt;/h3&gt;

&lt;p&gt;And last I've updated the navigation layout and have added two slots: name and children&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;navigation.blade.php&lt;/strong&gt;&lt;/p&gt;


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

&lt;p&gt;...&lt;br&gt;
&amp;lt;x-nav-link-parent :href="'#'" :active="request()-&amp;gt;routeIs('padron.&lt;em&gt;')"&amp;gt;&lt;br&gt;
    &amp;lt;x-slot name="name"&amp;gt;Option A&amp;lt;/x-slot&amp;gt;&lt;br&gt;
    &amp;lt;x-slot name="children"&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Item A&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;span class="separator"&amp;gt;&amp;lt;/span&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Item B&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Item C&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;span class="separator"&amp;gt;&amp;lt;/span&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Item D&amp;lt;/a&amp;gt;&lt;br&gt;
    &amp;lt;/x-slot&amp;gt;&lt;br&gt;
&amp;lt;/x-nav-link-parent&amp;gt;&lt;br&gt;
...&lt;br&gt;
&amp;lt;x-responsive-nav-link-parent :href="'#'" :active="request()-&amp;gt;routeIs('padron.&lt;/em&gt;')"&amp;gt;&lt;br&gt;
    &amp;lt;x-slot name="name"&amp;gt;Padrón&amp;lt;/x-slot&amp;gt;&lt;br&gt;
    &amp;lt;x-slot name="children"&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Buscador&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;span class="separator"&amp;gt;&amp;lt;/span&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Centros de votacion&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Juntas&amp;lt;/a&amp;gt;&lt;br&gt;
        &amp;lt;span class="separator"&amp;gt;&amp;lt;/span&amp;gt;&lt;br&gt;
        &amp;lt;a href="#"&amp;gt;Cartografia&amp;lt;/a&amp;gt;&lt;br&gt;
    &amp;lt;/x-slot&amp;gt;&lt;br&gt;
&amp;lt;/x-responsive-nav-link-parent&amp;gt;&lt;/p&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h3&gt;
&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
  Final Result&lt;br&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fmpk33ddaj65xzko2tmu7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fmpk33ddaj65xzko2tmu7.jpg" alt="Menu and Sub Menu"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fglyvwh0da1m9o3hn5tzk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fglyvwh0da1m9o3hn5tzk.jpg" alt="Menu and Sub Menu, Responsive version"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>laravel</category>
      <category>breeze</category>
      <category>tailwindcss</category>
    </item>
    <item>
      <title>What should I learn, React Js or React Native?</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Fri, 19 Jul 2019 11:15:21 +0000</pubDate>
      <link>https://forem.com/laviku/what-should-i-learn-react-js-or-react-native-1ako</link>
      <guid>https://forem.com/laviku/what-should-i-learn-react-js-or-react-native-1ako</guid>
      <description>&lt;p&gt;Hi everyone! I'm willing to enter the mobile development world, I did some research and I was going to learn React but then I notice that React Native exists, now I don't know what path should I go?&lt;br&gt;
I've been working as a web developer, I love BackEnd more than FrontEnd, but I don't mind to work both parts, I want to develop an app that can work flawless on mobiles but also on desktops. &lt;/p&gt;

</description>
      <category>discuss</category>
      <category>beginners</category>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>Let's make our spotify playlist</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Fri, 12 Jul 2019 10:37:33 +0000</pubDate>
      <link>https://forem.com/laviku/let-s-make-our-spotify-playlist-2m52</link>
      <guid>https://forem.com/laviku/let-s-make-our-spotify-playlist-2m52</guid>
      <description>&lt;p&gt;Hey everyone, happy Friday! &lt;br&gt;
Most of us need music to work, so what about make our own spotify playlist?&lt;br&gt;
Here's the link to a &lt;a href="https://open.spotify.com/playlist/3wIchXPEKgztZXzVuL2gGZ?si=i9LDwY05Q1eB0OgjPZM0kA" rel="noopener noreferrer"&gt;collaborative playlist&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;Also why don't you share some of your must have artists?  Mine:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Juanes&lt;/li&gt;
&lt;li&gt;Paramore&lt;/li&gt;
&lt;li&gt;Muse&lt;/li&gt;
&lt;li&gt;Twenty One Pilots&lt;/li&gt;
&lt;li&gt;Kudai&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Image by &lt;a href="https://pixabay.com/users/Foundry-923783/?utm_source=link-attribution&amp;amp;utm_medium=referral&amp;amp;utm_campaign=image&amp;amp;utm_content=841436" rel="noopener noreferrer"&gt;Foundry Co&lt;/a&gt; from &lt;a href="https://pixabay.com/?utm_source=link-attribution&amp;amp;utm_medium=referral&amp;amp;utm_campaign=image&amp;amp;utm_content=841436" rel="noopener noreferrer"&gt;Pixabay&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>spotify</category>
      <category>leisure</category>
    </item>
    <item>
      <title>Challenges</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Tue, 05 Feb 2019 19:12:19 +0000</pubDate>
      <link>https://forem.com/laviku/challenges-52po</link>
      <guid>https://forem.com/laviku/challenges-52po</guid>
      <description>&lt;p&gt;So ... we are starting February, what about the goals of the year? already saved them for the next one like me 😅?&lt;/p&gt;

&lt;p&gt;Well, it's not about making you feel bad or demotivate you, is the opposite, I'm here to tell you about some challenges that maybe you didn't know.&lt;/p&gt;

&lt;p&gt;Everyone or at least most of us know Codepen, that wonderful place where people share artworks in the form of code whether in HTML, CSS or Javascript and where we land in search of that extraordinary thing that the client wants in his site or that the designer, who is not a programmer, thought it would be nice.&lt;/p&gt;

&lt;p&gt;Codepen publishes a challenge every week, I'm not really sure how long ago they started because until this year I paid attention of the messages that came to my notification tray😩. Each month has a specific theme and each week they give you elements and from there you let your imagination run, January was with colors and February with shapes.&lt;/p&gt;

&lt;p&gt;Since I am not a creative person in visual terms, that is, design, I decided to get serious with these challenges, I really reaffirm how uncreative I am in these terms, but I will continue to try them with each challenge. You can enter my &lt;a href="https://codepen.io/laviku" rel="noopener noreferrer"&gt;codepen profile&lt;/a&gt;, you will not find anything awesome, but I'm working on it and &lt;a href="https://codepen.io/collection/XMoaZz/" rel="noopener noreferrer"&gt;here&lt;/a&gt; is my collection of challenges of the year aaaand &lt;a href="https://codepen.io/challenges/2019/february/" rel="noopener noreferrer"&gt;here&lt;/a&gt; is the first challenge for this month. &lt;/p&gt;

&lt;p&gt;Enjoy!!&lt;/p&gt;

&lt;p&gt;Puedes encontrar esta entrada en español &lt;a href="https://laviku.tech/2019/02/05/retos/" rel="noopener noreferrer"&gt;aquí&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>beginners</category>
      <category>frontend</category>
      <category>motivation</category>
    </item>
    <item>
      <title>What do you think about "Black Mirror: Bandersnatch"?</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Wed, 02 Jan 2019 21:36:24 +0000</pubDate>
      <link>https://forem.com/laviku/what-do-you-think-about-black-mirror-bandersnatch-378o</link>
      <guid>https://forem.com/laviku/what-do-you-think-about-black-mirror-bandersnatch-378o</guid>
      <description>&lt;p&gt;&lt;strong&gt;Spoiler Alert&lt;/strong&gt;&lt;br&gt;
If you haven't seen Black Mirror: Bandersnatch try not to read this post, but is your decision... or not...&lt;/p&gt;




&lt;p&gt;Well, I just saw this new "interactive movie" and I have to say is very unfair to show developers as people who can go crazy by the fact of using tons of &lt;code&gt;if&lt;/code&gt; and &lt;code&gt;else&lt;/code&gt;. And also, what about the fork** as demonic simbol?&lt;/p&gt;

&lt;p&gt;**I'm not sure if this is the right word for the sign &lt;a href="https://thepracticaldev.s3.amazonaws.com/i/470tecr2iggygx7ceutw.jpg" rel="noopener noreferrer"&gt;https://thepracticaldev.s3.amazonaws.com/i/470tecr2iggygx7ceutw.jpg&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
    <item>
      <title>Starting to empower me of my role as a web developer</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Tue, 06 Mar 2018 00:11:47 +0000</pubDate>
      <link>https://forem.com/laviku/starting-to-empower-me-of-my-role-as-a-web-developer--1fpm</link>
      <guid>https://forem.com/laviku/starting-to-empower-me-of-my-role-as-a-web-developer--1fpm</guid>
      <description>&lt;p&gt;Hello everyone! I'm Lavinia from Nicaragua. I've been in this "industry" for about 5 years and I work as a web developer at &lt;a href="https://boombit.agency/" rel="noopener noreferrer"&gt;Boombit&lt;/a&gt;. I basically work the backend of the websites, I really enjoy being behind the code that makes something work.&lt;br&gt;
 &lt;br&gt;
I recently made a small internal talk about my experience as a developer and how it has been difficult for me to learn something that seems so easy for men, and I was not talking about gender equality, but some people emphasized that in some cases it is about gender.&lt;/p&gt;

&lt;p&gt;All this has made me think that I should push more my person, a &lt;strong&gt;woman&lt;/strong&gt;, developer. Something that seemed normal to me, however as a result of this small talk I understood that it really isn't normal. We have many women hidden somewhere, waiting for the right moment to emerge and I want to take advantage of that moment.&lt;/p&gt;

&lt;p&gt;It's the little things that together have made me see why I chose this path, most of the women are exposed to what society indicates, being wives and mothers, and when we are girls they buy us dolls, if you are children they give you a video game console. In my case I don't consider to have been overexposed to the traditional things of the girls, I liked to go to play videogames to the 3 houses of my house or the arcade that were in some grocery store. I liked math more than any girl and I competed with some boys to see who had the best grade, I think I've always been someone quite technical since then, so I see the problems as a flow chart that can be solved step by step.&lt;/p&gt;

&lt;p&gt;I hope as many women as I am, will decide to go out and make known what we do every day.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;P.S. I'm open to spelling corrections, English is not my native language&lt;/em&gt;&lt;br&gt;
&lt;em&gt;P.S. 2 &lt;a href="https://boombit.academy/academia/lineas-proceso-desarrollo/" rel="noopener noreferrer"&gt;Boombit Talks&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>wecoded</category>
    </item>
    <item>
      <title>Explain Blockchain and bitcoins Like I'm Five</title>
      <dc:creator>Lavinia</dc:creator>
      <pubDate>Thu, 11 Jan 2018 16:44:00 +0000</pubDate>
      <link>https://forem.com/laviku/explain-blockchain-and-bitcoins-like-im-five-2g91</link>
      <guid>https://forem.com/laviku/explain-blockchain-and-bitcoins-like-im-five-2g91</guid>
      <description></description>
      <category>explainlikeimfive</category>
    </item>
  </channel>
</rss>
