<?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: Elias Groll</title>
    <description>The latest articles on DEV Community by Elias Groll (@eliasgroll).</description>
    <link>https://dev.to/eliasgroll</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%2F554362%2F70c33305-0289-401a-99f3-2b3940e1c1e2.jpeg</url>
      <title>DEV Community: Elias Groll</title>
      <link>https://dev.to/eliasgroll</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eliasgroll"/>
    <language>en</language>
    <item>
      <title>How I applied at Google when I was only 19 and made it in
</title>
      <dc:creator>Elias Groll</dc:creator>
      <pubDate>Wed, 06 Jan 2021 01:01:40 +0000</pubDate>
      <link>https://dev.to/eliasgroll/how-i-applied-at-google-when-i-was-only-19-and-made-it-in-3lg1</link>
      <guid>https://dev.to/eliasgroll/how-i-applied-at-google-when-i-was-only-19-and-made-it-in-3lg1</guid>
      <description>&lt;p&gt;Many people ask me how I managed to get into Google back when I was 19, and I have to say - it is not the regular success story.&lt;/p&gt;

&lt;p&gt;Being a Software Engineer at Google was my dream since I was 13 years old when I got my first internship as a Web Developer at a german banking company.&lt;/p&gt;

&lt;p&gt;Until I was 18, I had some more Software Engineering Internships (also at SAP) and studied Computer Science while still in High School.&lt;/p&gt;

&lt;p&gt;➡️ When I first applied, I GOT REJECTED 7 TIMES.&lt;/p&gt;

&lt;p&gt;All these rejections were very generic, and I decided to look out for someone to refer me to Google.&lt;/p&gt;

&lt;p&gt;A friend of a friend worked at Google, and after a chat, she decided to refer me to Google. I got rejected another time, and she referred me again - then I got an invitation for an interview, joined as an intern and later became a Full Time Software Engineer at #Google!&lt;/p&gt;

&lt;p&gt;Want to achieve anything? Be persistent! 🚀&lt;/p&gt;

&lt;p&gt;Comment if you want to hear more about the interviews and the process or why I finally left Google!&lt;/p&gt;

</description>
      <category>google</category>
      <category>career</category>
      <category>tech</category>
    </item>
    <item>
      <title>New year resolutions</title>
      <dc:creator>Elias Groll</dc:creator>
      <pubDate>Wed, 06 Jan 2021 00:41:58 +0000</pubDate>
      <link>https://dev.to/eliasgroll/new-year-resolutions-54el</link>
      <guid>https://dev.to/eliasgroll/new-year-resolutions-54el</guid>
      <description>&lt;p&gt;Just to hold myself accountable, here are some new year resolutions ✅:&lt;/p&gt;

&lt;p&gt;🟣 Codesphere Inc. needs to be more convenient AND more affordable than #Azure, #AWS, and #GCP.&lt;/p&gt;

&lt;p&gt;🔜 Launching end of January 2021.&lt;/p&gt;

</description>
      <category>startup</category>
      <category>founder</category>
      <category>2021</category>
    </item>
    <item>
      <title>Regex..why can’t you just be normal? 🤯</title>
      <dc:creator>Elias Groll</dc:creator>
      <pubDate>Wed, 06 Jan 2021 00:37:24 +0000</pubDate>
      <link>https://dev.to/eliasgroll/regex-why-can-t-you-just-be-normal-1fjn</link>
      <guid>https://dev.to/eliasgroll/regex-why-can-t-you-just-be-normal-1fjn</guid>
      <description>&lt;p&gt;The problem with regular expressions is that they are too powerful, hence often mistaken for a Parser + Lexer and therefore lead to code which is VERY HARD TO MAINTAIN.&lt;/p&gt;

&lt;p&gt;Please devs, when you need to match a c struct - use ANTLR or whatever and avoid what I did back in the day:&lt;/p&gt;

&lt;p&gt;/((\w+\s*(,\w+\s*)&lt;em&gt;)(\n|\s)&lt;/em&gt;)?{([^}]&lt;em&gt;)}(\n|\s)&lt;/em&gt;(\w+\s*(,\s*\w+\s*)*)?;/g 🤪&lt;/p&gt;

&lt;p&gt;(ps: it’s only one of many, yes it might have bugs, no I did not find them yet, no it’s not in production anymore..)&lt;/p&gt;

</description>
      <category>regex</category>
      <category>javascript</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Hack the Chrome Dino Game</title>
      <dc:creator>Elias Groll</dc:creator>
      <pubDate>Wed, 06 Jan 2021 00:35:19 +0000</pubDate>
      <link>https://dev.to/eliasgroll/hack-the-chrome-dino-game-3ohc</link>
      <guid>https://dev.to/eliasgroll/hack-the-chrome-dino-game-3ohc</guid>
      <description>&lt;p&gt;How to 'hack' the Google Chrome Dino Game 🦖&lt;/p&gt;

&lt;p&gt;Step 1:&lt;br&gt;
Open the game (type chrome://dino in your Chrome Browser)&lt;/p&gt;

&lt;p&gt;Step 2:&lt;br&gt;
Open the Developer Mode (Ctrl + Shift + I or option + command + I)&lt;/p&gt;

&lt;p&gt;Step 3:&lt;br&gt;
Type this code in the console&lt;br&gt;
Runner.prototype.gameOver = ()=&amp;gt;{};&lt;/p&gt;

&lt;p&gt;Step 4:&lt;br&gt;
Close the Developer Mode and start the game&lt;/p&gt;

&lt;p&gt;Step 5:&lt;br&gt;
BOOM! The dino goes past all cactus and birds 🤪&lt;/p&gt;

&lt;p&gt;➡️ Webdevelopment is a superpower 🦹‍♀️&lt;/p&gt;

&lt;p&gt;Comment hack below if you want more hacks!&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>hack</category>
      <category>fun</category>
    </item>
    <item>
      <title>We have a problem..</title>
      <dc:creator>Elias Groll</dc:creator>
      <pubDate>Wed, 06 Jan 2021 00:28:47 +0000</pubDate>
      <link>https://dev.to/codesphere/we-have-a-problem-326k</link>
      <guid>https://dev.to/codesphere/we-have-a-problem-326k</guid>
      <description>&lt;p&gt;It's a familiar one to most of us who work in #tech.&lt;/p&gt;

&lt;p&gt;We spend more time setting up and managing #infrastructure than we do writing code for it.&lt;/p&gt;

&lt;p&gt;Sometimes there are not even entries on #Google for that, and the only thing you can do is try it out.&lt;/p&gt;

&lt;p&gt;For Codesphere Inc., Jonas Zipprick, Roman Frolov and me wrote many thousands of lines of ansible scripts, helm charts and code - for setup, not features.&lt;/p&gt;

&lt;p&gt;While in the last weeks we tried out different tweaks to improve our huge kubernetes cluster, I am now proud to say we are building something from scratch so developers won't have to.&lt;/p&gt;

&lt;p&gt;(For everyone interested: multi master, multi load balancer, external etcd and more...).&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>kubernetes</category>
      <category>helm</category>
    </item>
  </channel>
</rss>
