RSSAmplifier

Blog

Deven Bhooshan

When in doubt, use brute force.

devenbhooshan.wordpress.comRSS feed ↗10 posts

Latest posts

Magics of browser console you aren’t aware of

Web developers log messages on the console to ensure their javascript code is working as expected. Apart from just logging the message like console.log("log message"), there are other useful utilities which a web dev can use to level up their debugging.Let’s start with logging the console object to see what all functions are there in Continue reading Magics of browser console you aren t aware of

Things I like about PostgreSQL

I want to write an appreciation post for PostgreSQL! why?! A few days ago, an article Things I hate about PostgreSQL was trending. I think the author is right about the limitations of PostgreSQL in some of the cases. Personally, I have also faced issues because of vacuum and XID-wraparound at Gojek[1]. But I feel Continue reading Things I like about PostgreSQL

why should I do production support?

I hear this question almost every month from at-least one product engineer(specially new hires) in the team. In this blog post, I will to try to answer this question with my experience of doing production support at Gojek, an Indonesian superapp with 18+ products. Context Currently, I am leading a team called IronBank[1] which is Continue reading why should I do production support?

why should I commit frequently?

Frustration Every now and then I see developers making commits of huge size sometimes 1000s of lines(the above image is from a real incident where one developer added 1000+ lines and deleted 450+ lines in a single commit). Even I have done this mistake multiple times. This small post is my take on why Continue reading why should I commit frequently?

Telegram’s new Inline Bots

Telegram today announced inline bots in their blog post. [Why I am writing this blog post ? I was eagerly waiting for this feature] From Telegram blog post With the new inline mode, bots become omnipresent and can be used as a tool in any of your chats, groups or channels – it doesn t Continue reading Telegram s new Inline Bots

Frenzzy.in – First Online Video Challenges Hosting Platform

Valentines Day we launched http://frenzzy.in Video challenges hosting platform. It is one of its kind place where you can participate in challenges by uploading video links and win exciting prizes. Challenges are of various categories Fun , Love, Music etc . You can see current challenges at http://frenzzy.in/challenges/ . Platform got 450+ Users with 2.5k+ Pageviews withing 2 Continue reading…

Graph.js – a Graph Algorithms Library in JavaScript

Hello World! I am writing a blog post after long time. I was quite a busy these days. One day I thought of developing a game in JavaScript. The game design was such that it required graph algorithms implementation in JS. I googled but found nothing suitable for my work. So I though of implementing my Continue reading Graph.js a Graph Algorithms Library in JavaScript

KillFlash :HTML5

What a newbie thinks about HTML5 ? HTML5 rumoured as the flash killer is one of the hot topics among the developers. Saying that it is just a revision(5th) of the HTML standard will not serve the power it provided to the developers. I myself being new to web technologies have always thought of making a Continue reading KillFlash :HTML5

XOR Properties

XOR also known as Exclusive OR is a logical operation operates on two operands which results in true only if one of the operand has a value true . In Java,C++,C,C# it is represented by ^. In computer Science it is often used for bitwise operations. 010 XOR Continue reading XOR Properties

Something about Java

Introduction With the advent of technical Civilization, where competition is the only survival maxim, JAVA is much ahead than its counterpart technologies. Its flexibility is its power and inheritance of legacy is buzzword among techno-savvy. JAVA and C++ have much in common and indirectly depends on C.Java is a hot property of Sun Microsystem, thanks to Continue reading Something about Java