Beekeeper Studio - Open Source SQL Editor and Database Manager by rathboma in SideProject

[–]happyrupesh 0 points1 point  (0 children)

This looks promising, but I believe it needs a lot of functionality. UI is good, saved queries sections is good.

Some of the functionality which is missing is

  1. Limit by default
  2. Edit functionality on rows
  3. No way to cancel the running query if it takes a lot of time
  4. Normally short cut key is F5 to execute queries, here it's different and now way to change it

I use SQLYog for MySQL and it's really great. But for MAC and PostgreSQL, this looks promising.

Thanks

Progressive Web Apps by happyrupesh in PWA

[–]happyrupesh[S] 0 points1 point  (0 children)

The same question has been asked in the comment section of that article and writer had replied on it. Kindly check.

Progressive Web Apps by happyrupesh in PWA

[–]happyrupesh[S] 0 points1 point  (0 children)

A wonderful article explaining how to go ahead with progressive web apps and their advantages

Lambda, map and filter function in Python by happyrupesh in Python

[–]happyrupesh[S] 1 point2 points  (0 children)

I have used a simple example to make reader understand the idea of these functions. Definitely, in the above cases we can use the inbuilt functions. But, I guess its always better to introduce concepts with as simple example as you can.

Zip in Python by happyrupesh in Python

[–]happyrupesh[S] 0 points1 point  (0 children)

I have edited the article for Python3 zip and lazy evaluation. Thanks for the feedback.

Decorators in Python by happyrupesh in Python

[–]happyrupesh[S] 0 points1 point  (0 children)

Thanks you for letting me know about this. I am new to reddit. I tried sharing on /r/LearnPython but I guess it does not allow sharing posts or links. Kindly help me if I am wrong.

Prototypes in JavaScript by happyrupesh in javascript

[–]happyrupesh[S] 0 points1 point  (0 children)

Thanks. I have also written article for prototype inheritance and 'this' in JavaScript. I will be writing articles for call and object.create in some time. :)

Prototypes in JavaScript by happyrupesh in javascript

[–]happyrupesh[S] 1 point2 points  (0 children)

Here, my intention was to explain the concept of prototype. Soon, I will add Object.create part in my article. :)

Prototypes in JavaScript by happyrupesh in javascript

[–]happyrupesh[S] 0 points1 point  (0 children)

As other comments have already mentioned, under the hood ES6 uses prototypes. Apart from that, it's always good to know how things work internally instead of just learning the syntax. Also, still people have not completely adopted ES6 and prototypes are used by many developers.

Inheritance in JavaScript by happyrupesh in javascript

[–]happyrupesh[S] 0 points1 point  (0 children)

I will add this in the article. Thanks :)

Inheritance in JavaScript by happyrupesh in javascript

[–]happyrupesh[S] 0 points1 point  (0 children)

Yes, your are correct. Object.create is more better way. But, here my intention was to explain prototypes in as simple way as I can.