<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Beyond the Loop</title>
    <description>Going from beginner to professional</description>
    <link>https://beyondtheloop.dev/</link>
    <atom:link href="https://beyondtheloop.dev/feed.xml" rel="self" type="application/rss+xml" />
    
      <item>
        <title>3 Programming Lessons From Uncle Iroh</title>
        <description>
          How an animation character made me a better programmer - 
          Uncle Iroh, from Avatar: The Last Airbender is one of my favourite characters in fiction. It’s this guy: The quintessential mentor, he gives insightful advice to all the main characters in the series. His attitude towards life - making the most of the circumstances, enjoying the moment, and detaching himself...
        </description>
        <pubDate>Thu, 12 Nov 2020 00:00:00 -0800</pubDate>
        <link>https://beyondtheloop.dev/uncle-iroh-is-the-seniorest-developer/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/uncle-iroh-is-the-seniorest-developer/</guid>
      </item>
    
      <item>
        <title>📄One Big Google Doc📄</title>
        <description>
          The lazy but effective way to keep all your notes - 
          The title says it all, really. I keep all my notes, plan most of my projects, and keep a diary in one big Google Doc. It’s been going on for about two years, and it’s grown to about 110 pages. It’s been the most useful way to gather my knowledge...
        </description>
        <pubDate>Sun, 06 Sep 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/one-big-google-doc/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/one-big-google-doc/</guid>
      </item>
    
      <item>
        <title>Fearless Code Review Checklist</title>
        <description>
          A systematic approach to surviving your first 5 Code Reviews - 
          Note: This is a very long post, but it’s worth reading! If you’re in a hurry, I’ll leave the condensed version of the list at the end. Code Review is a fundamental skill for engineers. Being able to read a set of changes and derive useful insights and constructive feedback...
        </description>
        <pubDate>Wed, 26 Aug 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/code-review-checklist/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/code-review-checklist/</guid>
      </item>
    
      <item>
        <title>5 Non-Technical Tips to Improve Your Technical Interviews</title>
        <description>
          Preparing for technical interviews is not only about learning to solve hard problems. - 
          Technical interviews! We all hate them, we all have to live with them! They can be incredibly nerve-wracking! After all, you’re gambling your future job on coming up with a clever solution to a complicated problem on the spot! Well, not quite. While having a sound technical profile is very...
        </description>
        <pubDate>Fri, 14 Aug 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/5-non-technical-tips-to-improve-your-technical-interviews/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/5-non-technical-tips-to-improve-your-technical-interviews/</guid>
      </item>
    
      <item>
        <title>Why learning Rust is great... As a second language</title>
        <description>
          Leverage the powerful design decisions behind Rust to level up your core engineering skills - 
          So, you’ve taken your first steps into programming. Welcome! You’ve taken some courses, and built some amazing things. You’ve caught the programming bug. Congratulations! Maybe you started with Python, doing some neat data analysis. Maybe with CSS+HTML+JS, creating beautiful projects. Maybe something else. Whatever the case, you’re now comfortable with...
        </description>
        <pubDate>Sat, 08 Aug 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/rust-second-language/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/rust-second-language/</guid>
      </item>
    
      <item>
        <title>3 Programming milestones towards mastery - and how to accomplish them!</title>
        <description>
          How to know when you're not a beginner anymore - 
          I recently had a great conversation on Twitter with @svpino and others, about the line between beginner and advanced programmer: I&amp;#39;m curious: How do you know when to switch from &amp;quot;beginner&amp;quot; to &amp;quot;seasoned&amp;quot;?Getting over the middle part was the hardest part of my dev journey.&amp;mdash; Beyond The Loop (@BeyondLoop) August...
        </description>
        <pubDate>Sat, 01 Aug 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/3-programming-milestones-to-work-towards/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/3-programming-milestones-to-work-towards/</guid>
      </item>
    
      <item>
        <title>1% Better: 3 scripts to explore jar files easily</title>
        <description>
          
          TL;DR These three functions have been very useful for me when looking at the contents of a jar, I hope they are useful to you as well: # Pretty-ptrint the list of files in a jar # Example usage: `$ peek_jar path/to/my.jar` function peek_jar() { jarfile=$1 jar tf &quot;${jarfile}&quot; |...
        </description>
        <pubDate>Thu, 30 Jul 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/3-scripts-to-explore-jar-files-easily/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/3-scripts-to-explore-jar-files-easily/</guid>
      </item>
    
      <item>
        <title>1% Better: Make git add interactive with -p</title>
        <description>
          
          TL;DR Use git add -p to interactively stage chunks of files. It’s one of the few git flags I have memorized and use every day. Tell me if this sounds familiar: You’re coding a project, implementing a feature, making changes, “in the zone”… And you’re done! Good job! Now we...
        </description>
        <pubDate>Wed, 29 Jul 2020 01:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/make-interactive-with/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/make-interactive-with/</guid>
      </item>
    
      <item>
        <title>Reddit for Programmers</title>
        <description>
          How to leverage Reddit's communities to skyrocket your improvement as an programmer - 
          Reddit is an amazing resource for beginner programmers. It’s a goldmine of references to valuable materials and a place where a lot of great folks gather to give each other feedback. It has helped me throughout my career and, in this post, I want to explain how you could be...
        </description>
        <pubDate>Mon, 27 Jul 2020 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/how-to-use-reddit-to-skyrocket-your-improvement/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/how-to-use-reddit-to-skyrocket-your-improvement/</guid>
      </item>
    
      <item>
        <title>Programming Fundamentals: The 4 Core Tasks</title>
        <description>
          How being mindful can help you not feeling overwhelmed. - 
          Programming is a very broad field. It’s an umbrella term for hundreds of different activities that millions of programmers do every day. From research to design, from experimentation to code review and debugging, these could all be classified inside of programming. No wonder then, that learning how to program is...
        </description>
        <pubDate>Sat, 07 Dec 2019 00:00:00 -0800</pubDate>
        <link>https://beyondtheloop.dev/the-four-core-tasks/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/the-four-core-tasks/</guid>
      </item>
    
      <item>
        <title>Antlr4 for C++ with CMake: A practical example</title>
        <description>
          A step by step guide to use Antlr4 in your CMake project - 
          Not long ago, I had to process a language’s syntax for a rather big solo project written in C++14 and using CMake 3.6 as the build system (check it here). I had no idea about which tool to use at the time, and ANTLR sounded familiar. The last version (ANTLR...
        </description>
        <pubDate>Sat, 01 Apr 2017 00:00:00 -0700</pubDate>
        <link>https://beyondtheloop.dev/Antlr-cpp-cmake/</link>
        <guid isPermaLink="true">https://beyondtheloop.dev/Antlr-cpp-cmake/</guid>
      </item>
    
  </channel>
</rss>
