General

Profile

zogash (Milovan Zogovic)

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 0 2 2

Activity

10/31/2019

09:33 AM Ruby Bug #16284: Net/HTTP consuming multiple times more memory compared to other libraries
Hey Yusuke, thanks for checking this out. I have tried this out on my friends machines and one of them has exactly the same results as I, but other has the results that are matching yours. All three of us are using MacBooks (although dif... zogash (Milovan Zogovic)

10/30/2019

12:14 PM Ruby Bug #16284 (Closed): Net/HTTP consuming multiple times more memory compared to other libraries
I have an issue where Net/HTTP library is causing very high memory usage when requesting for medium to large sized content.
Here is the script to reproduce the issue:
```
gem 'excon'
require 'uri'
require 'net/http'
require ...
zogash (Milovan Zogovic)

08/10/2015

04:55 PM Ruby Bug #11382: Keyword arguments randomly nullified
I've tried with 2.2.0-dev and it worked. Thanks! zogash (Milovan Zogovic)

07/21/2015

03:09 PM Ruby Bug #11382: Keyword arguments randomly nullified
My ruby version: "ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin14]" zogash (Milovan Zogovic)
03:03 PM Ruby Bug #11382: Keyword arguments randomly nullified
Actually, this has nothing to do with inheritance. Here is simplified example:
~~~
class Bug
def initialize(a:, b: nil, **others)
puts("a: #{a.inspect}, b: #{b.inspect}, others: #{others}")
end
end
require "yaml"
Bu...
zogash (Milovan Zogovic)
02:29 PM Ruby Bug #11382 (Closed): Keyword arguments randomly nullified
Here is the example:
~~~
class Parent
def initialize(a: nil, b: nil, **properties)
puts("parent: { a: #{a.inspect}, b: #{b.inspect}, properties: #{properties}")
end
end
class Child < Parent
def initialize(args={})...
zogash (Milovan Zogovic)

Also available in: Atom