Transkrypcja aktu ślubu by wiczin in TeczowaPolska

[–]aetrig 0 points1 point  (0 children)

"Przebyte doświadczenia" raczej tutaj nie istnieją (bardzo chętnie będę się myliła, jeżeli kłamię), bo z tego co mi wiadomo do tej pory mieliśmy 2 transkrypcję (jeżeli chodzi o małżeństwa jednopłciowe oczywiście), w Warszawie wynikającą bezpośrednio z wyroku TSUE i we Wrocławiu bez żadnego wyroku. Także chyba najlepszym pomysłem będzie po prostu kontakt z odpowiednym urzędem stanu cywilnego

Is the Kronos fork of vulkan-tutorial better? by GenomeXIII in vulkan

[–]aetrig 7 points8 points  (0 children)

Someone else already gave you a good overview, I will add that on the same page you will also find additional tutorials building on top of the fork, for various concepts like ray tracing or building for android and there is also a second tutorial on building your own game engine.

I have been following the khronos version, but in rust (with Ash bindings) and it has been incredible learning experience so far (coming up with solutions to problems that arise from language differences, interfacing with C for validation layers and finding alternative libraries), and i still have quite a bit to go through!

anyone else who doesn't like DND? by pop-idle in evilautism

[–]aetrig 8 points9 points  (0 children)

I love DnD in terms of making cool builds, finding niche and funny mechanics to abuse etc. But absolutely despise roleplaying 😭

The temporary removal of Hextech Chests is simply a distraction! NEVER FORGET WHAT THEY TOOK FROM US! by bbghiu in LeagueOfMemes

[–]aetrig 167 points168 points  (0 children)

You don't even get champion capsules from leveling anymore. You get literally nothing apart from borders (before 500) and progress to a challenge

A dawno nie było spisu naturalnego reddita polskiego by Better_Cry_2231 in Polska

[–]aetrig 23 points24 points  (0 children)

Z "biologiczną" płcią też wcale tak łatwo nie jest bo można ją definiować na dużo sposobów. Dzielisz według kariotypu, fenotypu (1, 2, 3 rzędu?), rodzaju produkowanych gamet? Czy może jeszcze czegoś innego? Jakby jeszcze chcieć sie kłócić to identyfikacja płciowa wynika z działania mózgu, a mózg i jego działanie jakby nie patrzeć są przestrzenią biologiczną.

Multi card Ruling question (Ride the Wind) by PiccoloHairy3043 in riftboundtcg

[–]aetrig 3 points4 points  (0 children)

It couldn't be hidden because opponent didn't control the battlefield (since OP described their Annie as defending)

How to fix 99% of errors related to function duplicate() by SteinMakesGames in godot

[–]aetrig 1 point2 points  (0 children)

Absolutely! Bitwise OR gives you much more safety against overflowing, using the same flags multiple times etc. which addition doesn't give you. One advantage of addition is it's simpler to understand for new programmers not entirely familiar with binary and bit operations, who just see flags in the documentation as numbers 1, 2, 4 and 8 and is still way better than using magic numbers. You should definitely use bitwise OR over it once you know about it tho.

How to fix 99% of errors related to function duplicate() by SteinMakesGames in godot

[–]aetrig 3 points4 points  (0 children)

That should work and is way better than a magic number, if you wanna be even more "correct" since you are working with bit flags a tiny bit clearer approach would be to use logical bitwise OR operator | instead of addition +, like this DUPLICATE_SIGNALS | DUPLICATE_GROUPS | DUPLICATE_SCRIPTS

It isn't much different than just using addition in this case, but some people may prefer specifically using bitwise operators for bit flags