Patrick Oscity
Patrick Oscity
# Problem description Dotjs stopped working with Chrome 58. Chrome will no longer accept a certificate without `subjectAltName` and will display this error instead: > Attackers might be trying to...
Consider the following code: ``` require 'wavefile' include WaveFile #1 second 440 Hz square wave format = Format.new(:mono, 16, 44100) writer = Writer.new("square.wav", format) cycle = ([2**15] * 50) +...
The current API for using ciphers with Authenticated Encryption (currently only AES-GCM) is rather misleading and quickly leads to subtle bugs related to the length of `auth_tag`. In particular, the...
Changes in ice_cube since 0.14.0 appear to be backwards compatible so upgrading is simple
Just a small change required to make sidetiq work with the currrent celluloid version.
#### For bugs - Rule Id (if any, e.g. SC1000): [SC2142](https://shellcheck.net/wiki/SC2142) - My shellcheck version (`shellcheck --version` or "online"): `0.8.0` - [x] The rule's wiki page does not already cover...
## What I tried to do I want to transliterate an all-caps string ```ruby I18n.transliterate("KANÜLE") ``` ## What I expected to happen I expect all resulting characters to be capitalized...
Just wanted to sprinkle some syntactic sugar on the `Parser` and `Encoder` classes. Whereas now you would have to write ``` ruby parser = Yajl::Parser.new parser.on_parse_complete = lambda { |hash|...