• Two year work anniversary

    1–2 minutes

    <p>July 01, 2020 is my two year work anniversary with <a href="https://curalie.de&quot; target="_blank" rel="nofollow noopener noreferrer">Curalie GmbH</a>. It’s been great two years until now, I have enjoyed working here every single day (there have been very few blue days) and I look forward to the upcoming challenges.</p>n<p>2 years ago, I was looking for a job Read more

  • Interview advice

    1–2 minutes

    <ul>n<li>n<p><strong>Tell me about yourself</strong> —> Mention what you want them to hear or know about you; your learnings, accomplishments etc. </p>n<ul>n<li>Keep a list of accomplishments ready</li>n<li>Important learnings, lessons learned</li>n<li>Learnings relevant to tech stack, general team building</li>n</ul>n</li>n<li>Interviewer always looks for —> tech competency, most importantly <strong>learning + team fit</strong> —> longer vision</li>n<li>Buzzwords —> domain driven design Read more

  • JS Interview

    1–2 minutes

    <p>var a = [{a:1}, {a:1}, {a:1}]nvar b = a.filter(o => o.a === 1)</p>n<p>if(a[0] === b[0]) {nconsole.log(1)n}</p>n<p>if(a === b) {nconsole.log(2)n}</p>n<p>if(a[0].a === b[1].a) {nconsole.log(3)n}</p>n<p>function a() {nconsole.log(this)n}</p>n<p>console.log(a())nconsole.log(new a())</p>n<p>var cls1 = function(){};ncls1.prototype.method = function(val) {n return val*val;n}</p>n<p>var cls2 = function() {n  this.method = function(val) {n  return val*val;n}n}</p>n<p>var instance1 = new cls1();nvar instance2 = new cls2();</p>n<p>new Promise((resolve) => {nresolve();nconsole.log(1);n}).then(() => console.log(4))</p>n<p>setTimeout(() => Read more

  • The art of asking questions – Part 2

    1–2 minutes

    Gosh! Time flies…I cannot believe it’s almost a year since I wrote my last blog post. I have tried to draft multiple posts in the meantime, but none of them were published because they were abandoned mid-way. While I hope to resume my habit of writing 🤞, here is an animated video about a post Read more

  • Hello World

    1–2 minutes

    <p>I recently subsribed to <a href="https://bloggingfordevs.com/&quot; target="_blank" rel="nofollow noopener noreferrer">Monica Lent’s</a> newsletter to get better with blogging, writing content and mainly learning and getting better with SEO.</p>n<p>As a first step, I am migrating away from my old <a href="https://princiya777.wordpress.com&quot; target="_blank" rel="nofollow noopener noreferrer">Wordpress blog</a> to a self owned one and I choose Gatsby.</p>n<p>In the past, Read more

  • Connect React to Redux - a diagrammatic guide

    Connect React to Redux - a diagrammatic guide

    2–3 minutes

    This post is aimed at people already knowing React, Redux and aids them in better understanding how things work under the hood. When I first got into the React universe 🌐, ~3 years ago, I had a very hard time understanding how Redux’s mapStateToProps and mapDispatchToProps worked and were available to the React component. Here… Read more

Trending