• Zello

    4–6 minutes

    I am bad at naming things. I can’t think of a better title for this post! At Zalando, most of the names begin with a ‘Z’. Hence the title 😛 Copying these lines from my previous post: Meanwhile, I had applied for Zalando in October 2015. After visiting Berlin for the first time in September 2015 (diversity scholarship… Read more

  • 2016’s Hello World

    4–6 minutes

    Writing my first blog post from beautiful Berlin for the year 2016. I managed to achieve quite a bit in 2015. One goal for 2015 was to start talking at technical events/conferences; which was achieved. The other goal was to win a hackathon; which was partly achieved. Another goal was to do Coursera’s Machine Learning course seriously;… Read more

  • 2015 in review

    1–2 minutes

    The WordPress.com stats helper monkeys prepared a 2015 annual report for this blog. Here’s an excerpt: A San Francisco cable car holds 60 people. This blog was viewed about 300 times in 2015. If it were a cable car, it would take about 5 trips to carry that many people. Click here to see the… Read more

  • Tasty JavaScript Curry

    1–2 minutes

    JavaScript Curry: A useful technique to partially evaluate functions. Coming Soon… function myFunc(a, b) { if (arguments.length < 1) { return myFunc; } else if (arguments.length < 2) { return function(c) { return a + c } } else { return a + b; } } console.log(myFunc(2,2)); var add4 = myFunc(4); console.log(add4); console.log(add4(5)); var add… Read more

  • A thank you note!

    3–4 minutes

    I was going through my twitter feeds and came across WWCode’s tweet which asked to submit a story about how WWCode has impacted our careers. I was getting ready to go to office, but I stopped to write this story. I have been looking for a way to thank WWCode Bangalore and couldn’t find this… Read more

  • CORS

    4–6 minutes

    CORS – Cross Origin Resource Sharing This is a sequel to my post on cURL. “Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from another domain outside the domain from which the resource originated” from wiki. The above explanation is self… Read more

Trending