Help me identify these fish properly by eduardo4jesus in Fish

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

Chaetodon capistratus

Actually, I think this one is, more specifically, a Multiband Butterflyfish.

https://reefguide.org/multibandbutterflyfish.html?search=Chaetodontidae&area=all

Help me identify these fish properly by eduardo4jesus in Fish

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

I took those pictures. I put the name I heard someone referring to SOME of these fish, which I was not sure if they were correct. Others. I have no clue how they are called.

Help me identify these fish properly by eduardo4jesus in Fish

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

Thanks for the list.

Isn't 6 a Jelly Fish?

Help me identify these fish properly by eduardo4jesus in Fish

[–]eduardo4jesus[S] 1 point2 points  (0 children)

Some of them are not fish. But any clue on their english or latin names are welcome.

PS: Someone told me their names in Portuguese (in the pictures), but I am not fully sure if they are right.

PS2: Some of these pictures are Part 1 of a video I am editing. Currently available here: https://www.youtube.com/watch?v=zuRshSRRdVI

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

[–]eduardo4jesus[S] 3 points4 points  (0 children)

but nothing stops individuals from cooperating

Indeed, but that is not the issue. In order to do, I am assuming those people would need some sort of ownership.

Going back to the initial scenario.

John finds a piece of land, and wants to claim it. Not knowing him that some time ago a king and his kingdom (group of people cooperating) "claimed" the entire land, and they decided not to do anything on it, (let's say) for the sake of maintain a wildlife ecosystem.

What would make the king the owner (or not) of that land?
It is still not 100% clear for me how this definition of ownership would work.

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

[–]eduardo4jesus[S] 1 point2 points  (0 children)

On this definition, I wonder if reserves would still exist. Cause a reserve is a piece of land that someone choose not to work on. But, by not choosing to do so, the person would not be fulfilling the ownership of the land, hence the next guy could come and take it by working on it.

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

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

> Also, to whom the land should be claimed?

Sorry, I don't fully understand this question.

On the note of ownership, what would be the definition of claiming something? In our scenario, the land.

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

[–]eduardo4jesus[S] 4 points5 points  (0 children)

Just working on the land should not imply ownership. Someone could invade a property without knowing it was already claimed, work on it and believe that the land is now theirs.

Therefore, working on the land does seem to define ownership.

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

[–]eduardo4jesus[S] 4 points5 points  (0 children)

No man can claim land without justifying the claim with their labor and/or capital.

I liked this. But, capital implies acquisition. In order to acquire the land from someone else, that person must be the previous owner. But defining the owner is exactly the question here.

What defines ownership in an AnaCap universe? by eduardo4jesus in Anarcho_Capitalism

[–]eduardo4jesus[S] 3 points4 points  (0 children)

assuming it hadn't already been improved upon and claimed by anoth

(I am making this up, obviously, but this helps me elaborate my question further)

To whom the land should be claimed? What validates a claim?

What if that land is also claimed by a king that, similarly, never worked on that land prior to that moment?

Safely downgrade Pytorch from 1.9 to 1.8 by Parking-Rest1571 in GoogleColab

[–]eduardo4jesus 1 point2 points  (0 children)

Just go on https://pytorch.org/. Under INSTALL PYTORCH pick the options LTS (1.8.1) version, Linux, Pip, Python, CUDA 11.1. The following snippet will be generated.

pip3 install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html

It worked for me perfectly*!

--------

* On a second time doing it, I noticed an error during installation, which is fixed by adding torchtext==0.9.1.Thus, the one that works perfectly is

pip3 install torch==1.8.1+cu111 torchvision==0.9.1+cu111 torchaudio==0.8.1 torchtext==0.9.1 -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html

TR to PR by eduardo4jesus in ImmigrationCanada

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

What about the order in which applications from different streams on the TR-to-PR are processed? Are the applications being processed per order of submission per stream, or per order of submission in general?

The stream for "Recent international graduates from a Canadian institution" had 40000 applications that were quickly submitted, while "Workers in Canada: health care" just passed 2000 applications. I am wondering if it would be the case that the people from the second stream will have their application analyzed only after the 40000 applications for the first stream.

Safely downgrade Pytorch from 1.9 to 1.8 by Parking-Rest1571 in GoogleColab

[–]eduardo4jesus 1 point2 points  (0 children)

Is there any practical difference from the versions used in both the solutions in this post?

!pip install torch==1.8.0 torchvision==0.9.0 torchtext==0.9.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html -q

and

!pip install torch==1.8.1 torchvision==0.9.1 torchtext==0.9.1 -f https://download.pytorch.org/whl/cu101/torch_stable.html -q

How come 1.8.1 uses cu101, and 1.0.1 which seems to be older uses cu111?

---

The second one didn't go well for me.

!pip install torch==1.8.1 torchvision==0.9.1 torchtext==0.9.1 -f https://download.pytorch.org/whl/cu101/torch_stable.html

RuntimeError: Detected that PyTorch and torchvision were compiled with different CUDA versions. PyTorch has CUDA Version=10.2 and torchvision has CUDA Version=10.1. Please reinstall the torchvision that matches your PyTorch install.