TJ

Results 725 comments of TJ

Doesn't matter to me :D maybe we should just link to yours, I'm using it as a pkg in another project

Hmm the required ones first and maybe having some icon or label like you mentioned would be killer. Might be nice to display the examples in that description part as...

Hello, sorry for the delay, but yep there's an issue in the roadmap for adding natural language time ranges such as "yesterday at 6pm": https://github.com/apex/roadmap/issues/41 But in either case I...

No sorry the product itself is closed source, I'm just using this repo for the tarballs. If I end up hitting a decent milestone maybe I'll open-source it some day

It's basically just some `gcloud` commands, nothing too interesting :D

GH Polls is just a tiny side project, I'm happy to improve it if I get enough GH sponsors but I'm fine with it as-is for now. I do actually...

yeah the cli would be very unfriendly to config like this, unless it was in a regular js file loaded in. the middleware works pretty much fine for me though....

for sure, one second

``` function Rect(x, y, width, height) { this.x = x; this.y = y; this.width = width; this.height = height; } function Box(x, y, width, height) { Rect.apply(this, arguments); } ```

extra overhead in the constructors the way they are now just worries me due to how often these objects are created in a system like this, otherwise it wouldnt be...