Andi Idogawa

Results 68 comments of Andi Idogawa

14:25 JST: Now page 1 to 10 are all tencentcloud-sdk-* One option would be to only show X releases by the same author on those pages. But maybe it makes...

@simi I just think that it should be possible to see the newest releases of unique gems on the website for some time, maybe three days? It looks like if...

> Being able to use native extensions would be pretty great. I picture being able to use libui-ng (the ruby bindings of it) I think LibUI hooks into windows/linux/OSX code,...

Hello @dsisnero I spent a few days getting into this topic. I managed to run the debugger. The current build here strips the debug symbols and thats why we couldn't...

No worries, thanks for the useful code! In my fork, I removed the strip code and added the symbol flags and debugging worked! I'm not that good with powershell but...

@cleverer I think this is a good idea, however it would be good to dynamically generate the devcontainer.json files, or somehow change it that it only needs one. You could...

Hier erstmal noch eine kleine Messung zu den Allocations vor der Anpassung: Innerhalb vom person_duplicate_finder_spec: ``` context "multiple updates to the same person" do let(:existing) { Person.create!(attrs.merge(first_name: "foo")) } let(:attrs)...

Allokationen finden: ``` require 'allocation_tracer' require 'pp' attrs = { first_name: "John", last_name: "Doe", company_name: "Acme Corp", zip_code: "12345", birthday: "1990-01-01", email: "[email protected]" } result = ObjectSpace::AllocationTracer.trace do finder =...

> Das Memory Problem wird dadurch nicht behoben, da weiterhin für jede Person ein Eintrag in `unique_entries` existiert. Zudem find ich das naming `handle_single_duplicate` und `handle_multiple_duplicates` verwirrend, besonders wenn die...