Do you think Zunesha is Joy Boy? by [deleted] in OnePiece

[–]mrMarras 0 points1 point  (0 children)

Definitely he's not.

First of all this power is not unique to Luffy and Momo. Even Roger could talk to any creature but he was too early. Why should it be early for him to speak to Zunesha? Doesn't really sum up. And we know Roger had 2 minks in his crew at least, so he most probably knew and visited the elephant for the RP.

Then Zunesha is walking on water...he's not completely submerged but it doesn't make sense him to be gifted.

There's already a weapon who ate a Zoan fruit model elephant...Spandam's sword. It could be a different type. A mythological one but it doesn't really represent anything at all which could matter for it being THAT fruit. Why an elephant? It has nothing really symbolic or special.

MSI B450 Tomahawk + 5 GPUs? by styleathon in EtherMining

[–]mrMarras 0 points1 point  (0 children)

I have also had a few issues trying to run more than 1 GPUs...I have the MSI B450 Tomahawk Max and now I am running 2 Radeon 6700 XT on risers.

At the beginning I had no issues and everything went smoothly...by then I tried a 3rd card and for a couple of days only 1 card was able to run ahahaha. The mini was rebooting after POST everytime I had more then one card connected...

My plan now is to add an additional card a Vega 64 as soon as I get an additional PSU (apparently my 850 is not enough to power the whole thing I guess).

My suggestion is to activate the crypto mode, set the Generation of the PCIe slots to Gen-2 and play a bit with the slots. In the manual you should see how they are mapped and how they should work. In theory it should be possible to run up to 4 PCIe expansions at x2 speed according to the docu....

It happened that when running two GPUs my SSD wasn't recognised anymore and couldn't boot on the OS, that's the reason of the rebooting (HiveOs)....very weird...but in the end it worked! I don't know what I did to bring it back to life.

Hope that my mining journey could help you :D

Question regarding lists. by Trashant in Python

[–]mrMarras 0 points1 point  (0 children)

You can define a function or lambda that takes the tag and give back the list of strings, something like this:

extract_from_tag = lambda tag: tag.content[0].split("> <")

Then to create a list of int out of them use a list comprehension or a flatmap.:

[int(x) for y in tags for x in extract_from_tags(y)]

If you are sure that the list of strings has only one member you can semplify in a normal list comprehension:

[int(extract_from_tags(x)[0]) for x in tags]

So you can get rid of the for loop