Chakrit Wichian

Results 16 issues of Chakrit Wichian

There's been a debate over how to properly handle string serialization in languages with both string and binary support (the case with node.js) and this resulted in the msgpack owners...

Because https://github.com/hramos/helpscout/blob/master/lib/helpscout/client.rb#L590 This makes it troublesome to mock the outgoing request and also makes it impossible to specify exact page to retrieve.

``` js const x = { 'hello': 'world' }; x['hello'] = 'alien'; console.log(x['hello']); // prints 'alien' x = { } // fails silently. console.log(x['hello']); // still prints 'alien' ``` This...

Can you do one dancing like in the last panel of: http://www.thegamercat.com/comic/dance-off/ ? ![](http://www.thegamercat.com/wordpress/wp-content/uploads/2013/04/2013-04-22-gamercat_32.gif)

So it is possible/simpler to build child views using the standard Android's Adapter pattern.

Of all the dependencies in my project, `sql-migrate` is the slowest to build on a clean run. I think this was because of the references to all the database drivers...

Right now it is possible to get key collisions in redis when you have many components using the redis-graph for different purposes but connecting to the same redis database. Also...

Example is the `proxy_set_header` that should allows us to adds multiple headers to requests. This fails due to the nature of YML — when specifying multiple keys the last entry...

Refer to the docs: http://nginx.org/en/docs/http/ngx_http_upstream_module.html Use cases: - When using Nginx to resolve virtual hosts to different ports/servers/upstreams. - When using Nginx as a reverse-proxy to handle caching and other...

The correct value for "package_type" seems to be `"CONTAINER"` instead of `"docker"` I'm not sure how the original author came up with the value "docker", perhaps that was deprecated/obsoleted by...