Liam

Results 87 comments of Liam

Looks like the best course is to move everything that goes into /quick and /gems -- everything else gets updated really frequently and we should keep it where it is....

@joramwangi Do you mean that in the application.js file, you need to include cleave.js.js? Can you please explain the problem you're encountering?

What's the difference between that and this? http://bundler.io/blog/2014/08/14/bundler-may-install-gems-from-a-different-source-than-expected-cve-2013-0334.html The instructions don't use the block syntax but are careful to specify that you must include the source as an argument and...

Ohhhh wow! That is a vulnerability. I get it; the source is silently applied to all of them! PRs for documentation welcome; I can't get to this today but probably...

I'm getting a segfault on the M2 as well. Thanks very much Marcus for pointing out the differences! I followed the instructions exact and was surprised there was such a...

Scratch that. The official instructions don't even mention build_deps.sh. When I run build_deps.sh (from `./scripts`), then compile using: ``` cmake .. -DOPENSSL_CRYPTO_LIBRARY=../scripts/deps/lib/libcrypto.a -DOPENSSL_SSL_LIBRARY=../scripts/deps/lib/libssl.a -DOPENSSL_INCLUDE_DIR=../scripts/deps/include -DHWLOC_INCLUDE_DIR=../scripts/deps/include -DHWLOC_LIBRARY=../scripts/deps/lib/libhwloc.a make ``` I do...

This looks relevant: https://github.com/n10v/id3v2/blob/34286c4b196c8cbf785f3402fd6f127fcb696714/encoding.go#L162-L164 Also, oddly, in your code, ``` // bom is used in UTF-16 encoded Unicode with BOM. // See https://en.wikipedia.org/wiki/Byte_order_mark. var bom = []byte{0xFF, 0xFE} ``` This...

Alright I think I got it: https://github.com/n10v/id3v2/blob/34286c4b196c8cbf785f3402fd6f127fcb696714/text_frame.go#L24-L33 When I call `tf.WriteTo()`, it calls `bw.EncodeAndWriteText`. Follow along, it will add a single `0` - ```go func (bw *bufWriter) EncodeAndWriteText(src string, to...

Are you using the standard library's `database/sql` package? If so, you can just create one `sql.DB` and share it. It has its own pool of connections. The limit is set...

This isn't a bug in workerpool, it's how go works. ```go for _, account := range accounts { //