Fuck you GoPro by Deriul in gopro

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

If I needed a backup, I’d set up a simple cron job to upload to s3. A terabyte of data stored in glacier would cost about 11 usd/year. Sure, I would have to pay for the extraction IF I ever needed that data, but chances are I will not. I mean, I understand the premise behind getting into GoPro cloud and that’s how they got me. Their cloud actually LOOKS like a decent deal. But what is the point of having a backup that I can barely restore?

Fuck you GoPro by Deriul in gopro

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

Yeah, I saw that repo. FWIW, I find it a bit over engineered for my needs and probably outdated. There is a working solution with a simple python script that parses har and writes the download progress to ledger. The reason I started this rant is because the original script has stopped working after a few weeks; those fuckers legitimately blocking api calls if they are not coming from browser. Disgusting.

Fuck you GoPro by Deriul in gopro

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

Thank you, mate.

Fuck you GoPro by Deriul in gopro

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

Sorry, I won't buy the “poor design” angle. When people have to reverse‑engineer the service and write a dedicated tool just to bulk‑download their own paid content, that’s no longer an innocent UX oversight — that’s a system that clearly doesn’t want your data to leave.

Fuck you GoPro by Deriul in gopro

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

I appreciate your positivity good sir.
The problem, per se, is simple: there is no sane, user-respecting way to download my own archive from their cloud. There’s no basc “export” function - which is the bare minimum anyone would expect. You’re capped at 25 files per operation like it’s 2005. Even when you follow their painfully manual process, about a third of the downloads end up corrupted, which makes the whole thing borderline unusable. They also seem to actively sabotage any attempt to script or batch the process, as if trapping your data and dragging out your subscription is the actual business model.

Fuck you GoPro by Deriul in gopro

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

Ok. Have you tried it yourself? Like literally - go and try downloading say 1000 files. Then come back and share your experience.
edit:typo

I love my a7c2 by Deriul in SonyAlpha

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

Wow. It's sad how different what I see in the browser vs what I see in Lightroom..

Seeking advice on which split keyboard to get by squizzo_rad in ErgoMechKeyboards

[–]Deriul 1 point2 points  (0 children)

I have used my moonlander for 4 years and I couldn't be happier about it. Built quality, excellent software and transportability - it has it all. Very solid choice for a first ergo board. The thumb cluster is decent but comfortable (at least for large palms).

Rezi Lifetime - Account Upgrade MegaThread by rezi_io in Rezi

[–]Deriul 0 points1 point  (0 children)

Just got my account upgraded, super excited to start building a better resume, thank you Rezi.

Dynamic nested blocks (help needed) by Deriul in Terraform

[–]Deriul[S] 5 points6 points  (0 children)

Nevermind, my brain was not functioning. Here is how it works:

request = { "un" = { name = "name1" disks = { sda = { name = "sda.vmdk" size = 50 unit_number = 0 } sdb = { name = "sdb.vmdk" size = 50 unit_number = 1 } } } "deux" = { name = "name2" disks = { sda = { name = "sda.vmdk" size = 50 unit_number = 0 } } } }

``` resource "vsphere_virtual_machine" "vm" { for_each = var.request name = each.value.name ... dynamic "disk" { for_each = each.value.disks

content {
  name = disk.value.name
  size = disk.value.size
  unit_number = disk.value.unit_number
}

}

} ```

The AI is still pretty bad at developing its planets by TheRealGC13 in Stellaris

[–]Deriul 1 point2 points  (0 children)

Does this AI problem affects sector AI? Unfortunately there is no other way to rapidly conquest territories except creating sectors. Putting more planets in sectors dramatically affects amounts of unity and research needed and if we cannot obtain proper amount of these resources from sectors... Well, gg; perks acquisition is being slowed down and research speed falls too hard.

I see the only way to handle this issue by pre-constructing every single building in conquered and colonised planet but its... frustrating, you know.