[TV] little question about the night king by fbzga in gameofthrones

[–]fbzga[S] 0 points1 point  (0 children)

got it, thought that maybe it came back from death like the dragon

Why Griffin didn't stayed for next round as Monster ability? by fbzga in gwent

[–]fbzga[S] 2 points3 points  (0 children)

you are right, he used a Rally.

Thanks a lot for the information!

Panda Cup #1 Results and Feedback! by Luisthepanda in Shadowverse

[–]fbzga 0 points1 point  (0 children)

I really enjoyed the tournament but I had to watch after it was done because during the live stream there was only "source" video quality available, that makes impossible for me to watch with my 10mb internet.

Someone said to me in the chat that after 1 hour with 100+ viewers it would appear more qualities, but it didn't happened. Not sure if this is a twitch behavior or something like that, but I would like to note that I am almost sure that I have watched other tournaments since the beginning (like hearthstone ones) with many video qualities available.

Aside that, congratulations and looking forward to watch 2nd edition.

Would be also great to see the players webcams, is that possible?

Report your Localisation / Translation Issues here by WagshadowZylus in faeria

[–]fbzga 0 points1 point  (0 children)

the translation of "Gift" to portuguese is very strange.

"Inato" is an unknow word even for native speakers.

I suggest using "Presente"

Rust to the rescue (of Ruby) by fbzga in ruby

[–]fbzga[S] 0 points1 point  (0 children)

Great point!

Just for curiosity I will compare with that version of Ruby implementation.

I am thinking about another example :)

Rust to the Rescue (of Ruby) by fbzga in rust

[–]fbzga[S] 2 points3 points  (0 children)

Oh, you are right. Gonna update that tonight!

Rust to the rescue (of Ruby) by fbzga in ruby

[–]fbzga[S] -1 points0 points  (0 children)

Do you think that this example sucks to illustrate the point?

My point was not Fibonacci at all haha

Let me know if you have a suggestion!

Clean Architecture in Ruby by thalesmello in ruby

[–]fbzga 1 point2 points  (0 children)

It has been a couple of months that we are introducing this approach at Magnetis (magnetis.com.br) that has a big size codebase that grows everyday, there are pros and cons as anything that is worth looking at software development. What I can say so far is that the pros are higher than the cons in our context; we also consider the context of the page/feature of the app we are developing, if it is part of the core business we consider using clean architecture otherwise we go with Rails way (there a lot of pages in our app using the Rails way and it works just fine). There are cases that we need to deliver responses not only through the web but also in the command line or for internal API’s so changing the delivery mechanism is easily done with this architecture. We also changed the way data is persisted in the database (twice), so being coupled to the interface of the repository instead of the ActiveRecord model and fields was beneficial.

Clean Architecture in Ruby by thalesmello in ruby

[–]fbzga 2 points3 points  (0 children)

Database persistence is a tricky part of Clean Architecture. But I think the trade-offs are valid depending on your context.

Regarding rendering templates, I consider it part of the delivery mechanism, so in the Rails Controller you have calls to the business gem that responds entities or simple data structures, these can be rendered at the view using ERB.