<?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: Ricardo Campos</title>
    <description>The latest articles on DEV Community by Ricardo Campos (@rmcampos).</description>
    <link>https://dev.to/rmcampos</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%2F813506%2Fb9d3a479-0a36-48f1-bd77-b4371e2b15bb.jpg</url>
      <title>DEV Community: Ricardo Campos</title>
      <link>https://dev.to/rmcampos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rmcampos"/>
    <language>en</language>
    <item>
      <title>Mailgun API returning 401</title>
      <dc:creator>Ricardo Campos</dc:creator>
      <pubDate>Sun, 22 Jun 2025 20:01:43 +0000</pubDate>
      <link>https://dev.to/rmcampos/mailgun-api-returning-401-2ljg</link>
      <guid>https://dev.to/rmcampos/mailgun-api-returning-401-2ljg</guid>
      <description>&lt;h2&gt;
  
  
  How to solve 401 error on Mailgun API request
&lt;/h2&gt;

&lt;p&gt;I've been fighting this error for over one hour, and the solution is quite simple.&lt;/p&gt;

&lt;p&gt;Disclaimer: This solution is for a Spring Boot API, but might help you on different languages.&lt;/p&gt;

&lt;p&gt;The reason I'm creating this post, even in AI times, is that Claude wasn't able to point me clearly the issue, so, here it goes:&lt;/p&gt;

&lt;p&gt;When authenticating your API request programmatically, make sure you add a simple &lt;code&gt;Authorization&lt;/code&gt; header instead of a &lt;code&gt;BasicAuth&lt;/code&gt; header directly.&lt;/p&gt;

&lt;p&gt;Do this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight java"&gt;&lt;code&gt;&lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;set&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;HttpHeaders&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;AUTHORIZATION&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="n"&gt;basicAuth&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"api"&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="n"&gt;appConfig&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getMailgunApiKey&lt;/span&gt;&lt;span class="o"&gt;()));&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And don't do this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight java"&gt;&lt;code&gt;&lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;setBasicAuth&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="n"&gt;basicAuth&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"api"&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="n"&gt;appConfig&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getMailgunApiKey&lt;/span&gt;&lt;span class="o"&gt;()));&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For reference, in case you're wondering:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight java"&gt;&lt;code&gt;&lt;span class="kd"&gt;private&lt;/span&gt; &lt;span class="nc"&gt;String&lt;/span&gt; &lt;span class="nf"&gt;basicAuth&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;String&lt;/span&gt; &lt;span class="n"&gt;username&lt;/span&gt;&lt;span class="o"&gt;,&lt;/span&gt; &lt;span class="nc"&gt;String&lt;/span&gt; &lt;span class="n"&gt;password&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt; &lt;span class="o"&gt;{&lt;/span&gt;
  &lt;span class="nc"&gt;String&lt;/span&gt; &lt;span class="n"&gt;auth&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;username&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="s"&gt;":"&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;password&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="s"&gt;"Basic "&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nc"&gt;Base64&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getEncoder&lt;/span&gt;&lt;span class="o"&gt;().&lt;/span&gt;&lt;span class="na"&gt;encodeToString&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="n"&gt;auth&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getBytes&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nc"&gt;StandardCharsets&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;UTF_8&lt;/span&gt;&lt;span class="o"&gt;));&lt;/span&gt;
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now if you're still getting 401, I'll leave some items for you to double check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API Key&lt;/strong&gt;: double check the API key, if it's being applied and used correctly;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Domain Verification&lt;/strong&gt;: Although I'm not 100% sure this is a blocker, make sure your domain is verified and all check are green;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Region Mismatch&lt;/strong&gt;: If you're working within EU region, you might have to se the EU URL: &lt;code&gt;https://api.eu.mailgun.net/v3/...&lt;/code&gt; instead of the &lt;code&gt;api.mailgun.net&lt;/code&gt; directly.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. Thank you. Follow me for more. I'll be posting small fixes like this more often. &lt;/p&gt;

</description>
      <category>springboot</category>
      <category>mailgun</category>
      <category>email</category>
      <category>api</category>
    </item>
    <item>
      <title>How I organize myself as a tech lead</title>
      <dc:creator>Ricardo Campos</dc:creator>
      <pubDate>Sat, 23 Mar 2024 20:19:55 +0000</pubDate>
      <link>https://dev.to/rmcampos/how-i-got-my-time-organized-as-a-tech-lead-2oab</link>
      <guid>https://dev.to/rmcampos/how-i-got-my-time-organized-as-a-tech-lead-2oab</guid>
      <description>&lt;p&gt;Hi everybody! Today I want to share how I finally was able to get myself organized as a technical lead working in two teams with different products.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Define what tasks should be finished daily, weekly and monthly;&lt;/li&gt;
&lt;li&gt;Create templates with basic models, but helpful;&lt;/li&gt;
&lt;li&gt;Daily or weekly work with these templates making changes and adding your actual tasks;&lt;/li&gt;
&lt;li&gt;Work with check-boxes and leave unfinished work unchecked;&lt;/li&gt;
&lt;li&gt;Always start with unfinished work from yesterday (or the day before)&lt;/li&gt;
&lt;li&gt;Don't answer your team's questions right away;&lt;/li&gt;
&lt;li&gt;You're done :)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Complete article
&lt;/h2&gt;

&lt;p&gt;If you still here, I assume you'd like to read more. So, here's a quick background for context.&lt;/p&gt;

&lt;p&gt;I'm a shared resource between two Agile teams (with Scrum), handling planning, backlog refinement meetings, and all the usual Scrums ceremonies. Also, I'm the Senior developer for both teams, which means they're constantly asking for help. As you can imagine, managing time and tasks can get pretty complex.&lt;/p&gt;

&lt;p&gt;Yes, it's complex. And when dealing with complex problems like this, let's break it down and work with small pieces.&lt;/p&gt;

&lt;p&gt;First up, &lt;strong&gt;define your deliverables!&lt;/strong&gt; Take a moment to consider everything your company, your team, and your peers expect you to do. What you need to do daily, and weekly. Make a note of it.&lt;/p&gt;

&lt;p&gt;Next, &lt;strong&gt;work with templates!&lt;/strong&gt; Templates can get you set quickly in terms of what and how you need to work. I've found Trello to be a good tool, but Todoist, Notion, and probably others work too.&lt;/p&gt;

&lt;p&gt;I like Trello because I can have my template card on top of the list and easily create my cards.&lt;/p&gt;

&lt;p&gt;Here's mine daily template:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Review team River PRs&lt;/li&gt;
&lt;li&gt;Review team Mountains PRs&lt;/li&gt;
&lt;li&gt;Focus at least 30 minutes on team River issue 387&lt;/li&gt;
&lt;li&gt;Focus at least 30 minutes on team Mountains task 297&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And weekly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Summary tasks report&lt;/li&gt;
&lt;li&gt;Review tasks in the backlog that needs more information &lt;/li&gt;
&lt;li&gt;Get ahead with slides for the sprint review &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Remember, the more organized you are, the easier it gets. I prefer doing things at the same time everyday, if possible. Writing your tasks for the day should be your first activity.&lt;/p&gt;

&lt;p&gt;Now, &lt;strong&gt;work with check-boxes!&lt;/strong&gt; Check-boxes can visually indicate when something is done and when it's pending. Plus, checking things off gives our brains a great feeling. I like leaving unfinished work unchecked for that day, rather than  carrying it over to the next. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prioritize yesterday's work!&lt;/strong&gt; Ideally, we should finish yesterday's work first, so it doesn't get forgotten.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Focus time!&lt;/strong&gt; This is gold. As a technical leader, people will often ask you things, usually for help. But not all questions are super important. Most of them can wait. People can often find an answer themselves because they need to. You can review later. But use this power wisely.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You're done!&lt;/strong&gt; Finally, you'll have a better organization for your tasks, your daily work, reports, documentations, everything. The more you do, the better you get. Trust me.&lt;/p&gt;

&lt;p&gt;Thank your for reading. I'd love to hear your comment on this.&lt;/p&gt;

&lt;p&gt;Happy coding.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>techlead</category>
      <category>tools</category>
      <category>organization</category>
    </item>
    <item>
      <title>Delivering value</title>
      <dc:creator>Ricardo Campos</dc:creator>
      <pubDate>Fri, 06 May 2022 17:42:59 +0000</pubDate>
      <link>https://dev.to/rmcampos/delivering-value-4p61</link>
      <guid>https://dev.to/rmcampos/delivering-value-4p61</guid>
      <description>&lt;p&gt;What's up, my friend? What pops into your mind when you think of &lt;strong&gt;delivering value&lt;/strong&gt;?&lt;/p&gt;

&lt;p&gt;This is a topic that made me think for a long time and still does today. Mostly because it throws me out of my comfort zone. Often I get myself wondering about the reasons that I do things the way I do.&lt;/p&gt;

&lt;p&gt;Let me clarify. As a programmer, I need to carry about code quality, docs, if I'm keeping things simple, if I'm repeating code, if I'm writing in the best way possible, and so on. In general, that's good, however, sometimes, it can be a problem. I need to remember frequently that those &lt;strong&gt;details&lt;/strong&gt; little or nothing will bring value to the final product and to the customer.&lt;/p&gt;

&lt;p&gt;Understand that I'm not saying that I should write bad code, I'm just raising this question about sometimes sacrificing time and putting too much effort or more than it should. Don't write bad code. So what I want to do is bring that question: are we delivering value for sure? Or we're just focused on our own meters (from the company sometimes) that just make our lives worse?&lt;/p&gt;

&lt;p&gt;Often I see flame war about tech, languages, libs, and &lt;strong&gt;hippies&lt;/strong&gt; frameworks that even though they have good reasons, in most cases, they just want to be &lt;strong&gt;hippies&lt;/strong&gt;. Sorry to say this, but that is what I have seen out there! We don't see people talking about the best way to attend to the customer, about inviting him to decisions and project phases. It seems that the main idea is something like "I don't care about users, here I'm the boss, my code, my way."&lt;/p&gt;

&lt;p&gt;I don't want to go deep, just bring that to light.&lt;/p&gt;

&lt;p&gt;To finish I want to let the record that today I'm much more &lt;strong&gt;customer-oriented&lt;/strong&gt; than &lt;strong&gt;company-oiriented&lt;/strong&gt;. The goal it's the product, quality, and user experience. And don't &lt;strong&gt;just&lt;/strong&gt; a good source code. I tell you again that a good source code it's crucial, but can't decide the result.&lt;/p&gt;

&lt;p&gt;That's it! I'd love to see your comment.&lt;/p&gt;

&lt;p&gt;Till next time! &amp;lt;o/&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Originally posted at &lt;a href="https://ricardocampos.blog/post/delivering-value/" rel="noopener noreferrer"&gt;https://ricardocampos.blog/post/delivering-value/&lt;/a&gt; on Oct 24, 2020, 10:43:35 PM&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>work</category>
      <category>productivity</category>
      <category>discuss</category>
      <category>programming</category>
    </item>
    <item>
      <title>English - Gold tips</title>
      <dc:creator>Ricardo Campos</dc:creator>
      <pubDate>Wed, 04 May 2022 18:40:53 +0000</pubDate>
      <link>https://dev.to/rmcampos/english-gold-tips-3ac6</link>
      <guid>https://dev.to/rmcampos/english-gold-tips-3ac6</guid>
      <description>&lt;p&gt;This is the beginning of a series of posts about English learning. I want to highlight some points in the English learning process that can make a huge difference, especially if these things were noticed at the beginning of the process. Besides these tips, I want to give you a list of material, sources where and how you can study. So, let's get started!&lt;/p&gt;

&lt;p&gt;Very well. Many of us are used to studying, learning, having access to a book, then learning grammar, starting to apply, and then keep learning. More or less in that same order. And that's right, there's nothing wrong about it. But if we're talking about learning conversation, and fluency, to be precise, this approach just doesn't work.&lt;/p&gt;

&lt;p&gt;If you want to learn more grammar, there you go. You can keep your studies like you're probably doing. Get some books accordingly to your level and study them. However, if you're interested in keeping a conversation flow going, this standard method doesn't help at all. And the worse is that this same method is still presented on many many English schools around there.&lt;/p&gt;

&lt;p&gt;I'm sorry for complaining! But then, how to get to fluency? The answer is simple, just learn how to speak, and focus on pronounciation. Practice hard words, and hard sounds, and discover how and when to use them. To learn in the same way as babes do, naturally. Listening, repeating, getting wrong, repeating again, and understanding their meaning.&lt;/p&gt;

&lt;p&gt;This approach is not new, and it's known as learning backward because you focus on understanding and speaking first than writing and grammar. Maybe that can be new for you, and even shocking. Probably you took the wrong way for so long. The bright side is that now you know how to finally be fluent. If you want to know more about it, I would recommend you this podcast episode &lt;a href="https://www.inglesnuecru.com/562-uma-nova-forma-de-aprender-ingles/" rel="noopener noreferrer"&gt;See it here&lt;/a&gt;, they speak Brazilian Portuguese and English.&lt;/p&gt;

&lt;p&gt;And now, here are the tips as promised, where you can find good content and material to really study. Not only theory.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pronounce
&lt;/h3&gt;

&lt;p&gt;Start exactly where you are. Think of the most difficult word for you right now. Let's say that it's the word &lt;strong&gt;mother&lt;/strong&gt;, focus on it, repeat 10, 20, 50, 100 times. Until you can say it nicely, the closest possible from a native speaker. For a good pronunciation reference, you can use the &lt;a href="https://www.linguee.com/" rel="noopener noreferrer"&gt;linguee&lt;/a&gt; page, also &lt;a href="https://forvo.com/" rel="noopener noreferrer"&gt;forvo&lt;/a&gt; a website that has pronounces recorded by natives.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Resources&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://forvo.com/" rel="noopener noreferrer"&gt;https://forvo.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.linguee.com/" rel="noopener noreferrer"&gt;https://www.linguee.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Cake app (you repeat and the app shows if you're good or not)&lt;/li&gt;
&lt;li&gt;Elsa Speak app (super nice for pronunciation!!)&lt;/li&gt;
&lt;li&gt;/TH/ sound: &lt;a href="https://www.inglesnuecru.com/370-e-hoje-estamos-falando-sobre-o-som-do-th/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/370-e-hoje-estamos-falando-sobre-o-som-do-th/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;/R/ sound: &lt;a href="https://www.inglesnuecru.com/532-o-som-do-r-em-ingles-e-suas-dificuldades/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/532-o-som-do-r-em-ingles-e-suas-dificuldades/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;More /R/ sound: &lt;a href="https://www.inglesnuecru.com/586-o-som-do-r-em-ingles-e-como-aprender-de-uma-vez/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/586-o-som-do-r-em-ingles-e-como-aprender-de-uma-vez/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;The 3 /T/ Sounds: &lt;a href="https://www.inglesnuecru.com/585-os-3-ts-do-ingles-e-como-podemos-te-ajudar-a-desvendar/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/585-os-3-ts-do-ingles-e-como-podemos-te-ajudar-a-desvendar/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;The /S/ sounds: &lt;a href="https://www.inglesnuecru.com/531-silencio-por-favor-silent-s-e-silent-b-em-ingles/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/531-silencio-por-favor-silent-s-e-silent-b-em-ingles/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;/AW/ sound: &lt;a href="https://www.inglesnuecru.com/523-voce-sabe-pronunciar-o-aw-sound-em-ingles/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/523-voce-sabe-pronunciar-o-aw-sound-em-ingles/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;/AH/ sound: &lt;a href="https://www.inglesnuecru.com/522-como-pronunciar-o-ah-sound-em-ingles/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/522-como-pronunciar-o-ah-sound-em-ingles/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Repetition (shadowing): listening natives speakers and repeat out loud after them without thinking to much. More here: &lt;a href="https://www.youtube.com/watch?v=ljEP_ywBm7I" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=ljEP_ywBm7I&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Listening
&lt;/h3&gt;

&lt;p&gt;If you can understand almost everything in an English conversation, you can start with something more real, like the news, or even private classes online. Another great option is to listen to podcasts (I love this, I'm a podcast addict).&lt;/p&gt;

&lt;p&gt;Important: pay attention to the pronunciation. Try to understand, yes, but the key is to be able to speak like them. To be able to reproduce the exact same sound.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Resources&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;English Class 101 on Youtube: &lt;a href="https://www.youtube.com/channel/UCeTVoczn9NOZA9blls3YgUg" rel="noopener noreferrer"&gt;https://www.youtube.com/channel/UCeTVoczn9NOZA9blls3YgUg&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Inglês Nu e Cru Rádio: &lt;a href="https://www.inglesnuecru.com/episodes/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/episodes/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Watch a bunch of movies in English WITHOUT SUBTITLES.&lt;/li&gt;
&lt;li&gt;Radio Garden, a web radio station. This one it's from NYC: &lt;a href="http://radio.garden/visit/new-york-ny/9Yi25umJ" rel="noopener noreferrer"&gt;http://radio.garden/visit/new-york-ny/9Yi25umJ&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Conversation
&lt;/h3&gt;

&lt;p&gt;And last but not least, the practice itself! Challenge yourself and make mistakes. Don't skip this part. Try, even if you are not so confident, or have a short vocabulary. Just go for it.&lt;/p&gt;

&lt;p&gt;If you don't have a group, or friends, or something like that, I strongly recommend trying &lt;a href="https://www.talkntalk.com.br/" rel="noopener noreferrer"&gt;TNT&lt;/a&gt;, especially if you're Brazillian. You must subscribe for a free account and then you can book meetings. The meetings are on the Zoom platform for one entire hour. They have meetings every weekday, you can choose an hour that works best for you and book. The meeting link will be emailed to you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Resources&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Subscription for TNT: &lt;a href="https://www.talkntalk.com.br/" rel="noopener noreferrer"&gt;https://www.talkntalk.com.br/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's it. If you have any question, please, talk to me. I'm seriously interested about knowing you're experiente.&lt;/p&gt;

&lt;p&gt;See ya folks!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Originally posted at &lt;a href="https://ricardocampos.blog/post/english-gold-tips/" rel="noopener noreferrer"&gt;https://ricardocampos.blog/post/english-gold-tips/&lt;/a&gt; on Jun 21, 2020, 10:43:35 PM&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>englishlearning</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Começando no Inglês</title>
      <dc:creator>Ricardo Campos</dc:creator>
      <pubDate>Wed, 09 Mar 2022 16:57:15 +0000</pubDate>
      <link>https://dev.to/rmcampos/comecando-no-ingles-431h</link>
      <guid>https://dev.to/rmcampos/comecando-no-ingles-431h</guid>
      <description>&lt;p&gt;Faala pessoal, tudo bem? Hoje vou passar rapidão só pra deixar umas dicas de como começar a estudar o &lt;del&gt;maldito&lt;/del&gt; bendito Inglês. Pega um café e bora!&lt;/p&gt;

&lt;h2&gt;
  
  
  Primeiro passo
&lt;/h2&gt;

&lt;p&gt;Ter um motivo forte. Mas bem forte. Raiva e/ou ódio por ter perdido uma oportunidade maravilhosa também servem (meu caso kk).&lt;/p&gt;

&lt;h2&gt;
  
  
  Segundo passo
&lt;/h2&gt;

&lt;p&gt;Agora que você está sangue no zóio, faca na caveira, tem que escolher um assunto que te agrada. Agrada muito. Mas seja específico(a). Pode ser um esporte, um tema de notícias, uma atividade. &lt;/p&gt;

&lt;p&gt;Com o assunto na mão, é hora de começar a seguir (Twitter, Instagram, Linkedin, Newsletter, Google News, etc.) e começar uma leitura diária. &lt;/p&gt;

&lt;p&gt;Aqui está um segredo: &lt;strong&gt;Contato diário.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;IMPORTANTE: Dê um jeito de internalizar que o Inglês vai ser parte da sua vida. &lt;em&gt;Por isso deve ser algo que você gosta&lt;/em&gt;. Se você não gostar, seu cérebro bloqueia o aprendizado, ou tira o teu foco.&lt;/p&gt;

&lt;h2&gt;
  
  
  Terceiro passo
&lt;/h2&gt;

&lt;p&gt;Rotina. É isso mesmo meu(minha) amigo(a). &lt;del&gt;Não vou dizer &lt;strong&gt;disciplina&lt;/strong&gt; pra não parecer aqueles coachs chatos hauhau.&lt;/del&gt;&lt;/p&gt;

&lt;p&gt;Encontre um momento (ou vários, até melhor) pra ter esse contato. Importante notar que pode até ser um momento relax, como hora do café, mas não pode ser muito relax, pois o ceu cérebro desativa o modo aprendizado nessa hora.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quarto passo
&lt;/h2&gt;

&lt;p&gt;Tenha paciência. Vai levar um tempo. Não pense em anos, ou no objetivo final. Pois vai parecer distante demais, inalcancável, e vai te desmotivar.&lt;/p&gt;

&lt;p&gt;Faça um poco por dia e confie no processo.&lt;/p&gt;

&lt;p&gt;Citando uma frase traduzida de um podcast que gosto muito: &lt;strong&gt;Continue a boa luta e saiba perder&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Dicas de rotina
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Próximo ao horário do café da manhã (antes ou depois), confira uma notícia ou algum conteúdo rápido.&lt;/li&gt;
&lt;li&gt;Em algum horário que for melhor, dedique pelo menos 30 minutos de estudo focado. &lt;/li&gt;
&lt;li&gt;Descubra o que funciona pra você. Talvez seja inverter essa ordem aqui em cima. Seja flexível.&lt;/li&gt;
&lt;li&gt;Escolha um podcast e tente ouvir com frequência. Vai acelerar seu aprendizado. Aproveite a caminhada, o trajeto pra casa, a academia, etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dicas de podcasts
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Inglês Nu e Cru Rádio

&lt;ul&gt;
&lt;li&gt;Iniciante&lt;/li&gt;
&lt;li&gt;Sobre ensino de Inglês exclusivo para Brasileiros(as). Com muitas dicas pra nós.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.inglesnuecru.com/episodes/" rel="noopener noreferrer"&gt;https://www.inglesnuecru.com/episodes/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Gadget Lab

&lt;ul&gt;
&lt;li&gt;Intermediário&lt;/li&gt;
&lt;li&gt;Sobre tecnologia.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://open.spotify.com/show/11hUjoJv4FxFnw9r0mHIsC" rel="noopener noreferrer"&gt;https://open.spotify.com/show/11hUjoJv4FxFnw9r0mHIsC&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;All Things Considered

&lt;ul&gt;
&lt;li&gt;Avançado&lt;/li&gt;
&lt;li&gt;Notícias rápidas &lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.npr.org/programs/all-things-considered" rel="noopener noreferrer"&gt;https://www.npr.org/programs/all-things-considered&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;All Ears English

&lt;ul&gt;
&lt;li&gt;Iniciante&lt;/li&gt;
&lt;li&gt;Dicas de conversação, expressões, bem animado&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.allearsenglish.com/" rel="noopener noreferrer"&gt;https://www.allearsenglish.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dicas de apps
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Elsa Speak. Só indico este.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dicas de canais no YT
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;English in Brazil by Carina Fragozo - &lt;a href="https://www.youtube.com/channel/UCcNm9fM9V5wf-0PZVmkM08g" rel="noopener noreferrer"&gt;https://www.youtube.com/channel/UCcNm9fM9V5wf-0PZVmkM08g&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;English with Veronika Mark - &lt;a href="https://www.youtube.com/c/VeronikaMark" rel="noopener noreferrer"&gt;https://www.youtube.com/c/VeronikaMark&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Learn English with EnglishClass101.com - &lt;a href="https://www.youtube.com/c/EnglishClass101" rel="noopener noreferrer"&gt;https://www.youtube.com/c/EnglishClass101&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dicas de onde praticar NA FAIXA
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://discord.gg/english" rel="noopener noreferrer"&gt;https://discord.gg/english&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.talkntalk.com.br/" rel="noopener noreferrer"&gt;https://www.talkntalk.com.br/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Dicas finais
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Não estude mais do que 30 minutos por vez&lt;/li&gt;
&lt;li&gt;Esqueça filmes e séries dublados&lt;/li&gt;
&lt;li&gt;Na TV ative as legendas em Inglês e preste atenção nos SONS. Os Sons são a chave.&lt;/li&gt;
&lt;li&gt;Se tiver tempo, (ou pressa), veja sua(seu) série/filme em Inglês e sem legenda. Preste atenção e tente entender, mesmo que seja pelas imagens e contexto. Depois reassista com a legenda.&lt;/li&gt;
&lt;li&gt;Se você gosta de vídeos do TED Talks, eles são uma excelente opção de estudo. Tem transcrição e trandução.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;Valeu por ter lido até aqui. Se tiver uma dúvida específica ou recomendação, ou qualquer pergunta mesmo, comenta ai.&lt;/p&gt;

</description>
      <category>ingles</category>
      <category>aprendizado</category>
      <category>english</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
