Martijn Storck
Martijn Storck
Turns out this is actually a lot slower and allocating more due to how [#read](https://www.rubydoc.info/github/rubyzip/rubyzip/Zip%2FIOExtras%2FAbstractInputStream:gets) is implemented in Rubyzip. This is probably why I went with sysread initially :) ./benchmark.rb...
Since last week I've suddenly been having a similar issue with recent Chrome versions on macOS 12.5.1. A white overlay is showing while the game is running in the background....
This is something I run into as well.. another thing I notice with my Mongoid models is that a specific Time field is returned as a string. The results I...
Ah that was not immediately obvious to me, since: ``` Foo.tire.search('bar').first.class # => Foo ``` Thanks!
g++ comes with Xcode. You might need to install the command line tools using ``` xcode-select --install ``` After that the build should work.
You could try connecting using the following command from a shell ``` openssl s_client -connect host:port ``` This might show you the exact problem (look for the return code near...
The efforts in this thread look better than the default, but I think making a 'true' solarized theme (like the Vim theme) for irssi is not possible since it only...
Well, we have a setup where each application server (meaning a server that runs many instances of our application) has it's own, local, twemproxy instance that proxies to a shared...
Interesting idea. Until now, Xsv ignored any non-date/time number formats as it would lead to numbers being returned as ruby strings which is not always desirable. This could be solved...