btd's comments

btd | 9 years ago | on: New UX for Jenkins: Blue Ocean 1.0

Glad it is GA now, but it is still has some issues:

* If i use non core parameter in pipeline, BO ask me to move to classic interface

* If i do not use Github like pipeline, interface become partially useless. It means empty branches, empty PR columns etc. Where is good old custom pipelines?

But anyway it is good move forward!

PS: pipelines itself also has some issues, like really small number of useful steps, literally only sh step used everytime. Also in case of custom pipeline it is still unclear how to abort build in code. And using groovy collections methods is veyr inconvinient (like trying to use .collect to create command like options for next sh step)

btd | 10 years ago | on: The Final ES2015 (ES6) Draft

imo map and set useless. Real advantage of maps only that you can use any type of keys, but really why not convenrt them to string represntation and put to simple object? Map .has method uses === for object search. For set the same, just use object with keys and dummy values.

btd | 11 years ago | on: My node_modules are in Git again

We fixed this with installing npm proxy mirror. So each install happen from this proxy and if something missing it will be downloaded and saved for later from central.

In this case we always have the same dependencies that we have locally. But of cause this means you need own box with proxy.

(in our case it is nexus)

btd | 11 years ago | on: 0xDBE: JetBrains IDE for DBAs and SQL developers

Yep, i have used TOAD for Oracle, it is not bad. But imho jetbrain's make very good ide's. I mostly interested in DB extensions (non standard SQL extensions, PL/SQL and PLPG/SQL) etc, because as was written most jetbrains ide have basic db's support.

btd | 12 years ago | on: Simple client side error logging

This so many times discussed. In short use window.onerror handler and some transport depending on needs: like cors support, before and after load loggin etc. For begining you can just put all errors to google analytics and have all kinds of reports, stat by browsers and export to gdocs.

btd | 12 years ago | on: ExpressJS 4.0 has been released

Yes, you are right. I forgot how they call own optimizer. (i wanted to point that people do not repeat blindly that peace of code)

btd | 12 years ago | on: Response to Nodejitsu NPM Trademark

Maybe just n3?

PS: It is weird that node.js community well known for internal battles. Everybody throw shit at each other and nobody win from this.

btd | 12 years ago | on: You might not need jQuery

It is very castrated, better to use hidden iframe + window.postMessage for cors in ie8 and ie9.
page 1