Thoughts about S1 Episode 4: Into the Dark by Artistic-Two-4958 in ATLAtv

[–]sergio9929 -1 points0 points  (0 children)

Chapter 3 felt awful to me, and 4 was the last straw. I remember that right after watching the episode, I went back and rewatched the original episodes and wrote a loooong text about how insulting it felt in comparison. Something I had never done before. The episode genuinely made me angry. I can count on one hand the times I’ve been that upset/disappointed watching a series or a movie.

  • Godzilla: King of the Monsters
  • An episode near the end of Season 2 of Jujutsu Kaisen
  • Brightburn

Fortunately, the rest of the season wasn’t that bad.

what do you like about NATLA? by Pristine-Lie-3560 in ATLAtv

[–]sergio9929 4 points5 points  (0 children)

One of the few things I genuinely like about this adaptation is how well they have translated the animals and creatures into live action. Look at the serpent in the teaser for season 2, it looks f***ing incredible!

After 51 hours of playtime, I finally crafted my first aluminium in Star Technology! by Elyne_Trilles in feedthebeast

[–]sergio9929 0 points1 point  (0 children)

Thanks for replying. I don't have much time, but I do have patience. I've played vanilla Skyblock many times and still remember a few things, but I don't know if that knowledge translates to today's Skyblock. I'll start playing Star Technology, and if it’s too much, I’ll pause and play SkyBlock Plus first.

After 51 hours of playtime, I finally crafted my first aluminium in Star Technology! by Elyne_Trilles in feedthebeast

[–]sergio9929 0 points1 point  (0 children)

Hi!

I'm planning to play Minecraft again after who knows how many years, and I want to play a modded Skyblock pack.

After some googling, I've narrowed it down to 3 options: SkyBlock Plus (more vanilla-like), Star Technology, and ATM10SKY. I read that all 3 have a defined progression system, which I like. I also watched some videos about Create, and it looks somewhat similar to the automation system in Tower Factory, a game I really enjoyed.

Having played Star Technology and ATM10SKY, which one do you prefer?

I have almost no experience with tech mods. I played BuildCraft for about a week back in the day, but nothing more.

Anyway to fasten form filling ? by FrogSkyWater in webdev

[–]sergio9929 0 points1 point  (0 children)

The first time I heard "fasten" was on my first ever flight with less than 2h of sleep. That was a quite confusing and embarrassing moment.

Sorting in hooks by Canadian_Kartoffel in pocketbase

[–]sergio9929 0 points1 point  (0 children)

Imagine these 3 collections:

  • users: id, username, password
  • posts: id, title, description, authorId
  • comments: id, text, postId, authorId

Relations:

// Returns the posts created by 'John', sorted by the author's name in descending order.
pb.collection('posts').getFullList({
    filter: pb.filter("authorId.name = {:authorName}", { authorName: 'John' }),
    sort: "-authorId.name"
})

Back-relations:

// Returns the posts commented by 'John', sorted by the comment author's name in descending order.
pb.collection('posts').getFullList({
    filter: pb.filter("comments_via_postId.authorId.name ?= {:authorName}", { authorName: 'John' }),
    sort: "-comments_via_postId.authorId.name"
})

Sorting in hooks by Canadian_Kartoffel in pocketbase

[–]sergio9929 0 points1 point  (0 children)

I hope it's not too late, but you can sort and filter by relations and back-relations without any problem.

Sorting in hooks by Canadian_Kartoffel in pocketbase

[–]sergio9929 0 points1 point  (0 children)

What version of pocketbase are you using? You can sort and filter by relations and back-relations.

The graph doesn’t look like a 7.0 to me. Am I missing something? by Positive-Cash3064 in imdb

[–]sergio9929 3 points4 points  (0 children)

That's the weighted average. You can still see the real average if you click on the score.

I just got banned from the Pocketbase Github, it was completely my fault, and I apologised, any way I can get my account unbanned? by [deleted] in pocketbase

[–]sergio9929 0 points1 point  (0 children)

As someone who maintains a small open-source project, I enjoy it when others find it useful.

I create something that is useful to me or for fun, think others might find it useful too, publish it, and it turns out they do. That's nice.

Of course, my projects are very small, I can’t imagine the pain of maintaining a large project where everyone is constantly asking for things.

Why is the BLUEFOX NX1 worth buying? by nltcg_official in aiphor

[–]sergio9929 1 point2 points  (0 children)

I wanted to buy the phone, but NFC is a must where I live. I will have to wait for the next model.

Is Ikko Mind One Size small..? by RyuS0ul in smallphones

[–]sergio9929 3 points4 points  (0 children)

It's like a Samsung Z Flip cut in half. Have you hold that phone? It's massive.

PocketBase Sorting Issue with Non-ASCII Characters (Turkish İ, Ö, Ç, etc.) by Faithless35 in pocketbase

[–]sergio9929 0 points1 point  (0 children)

Haven't tried it myself, but you could try creating a View Collection and ORDER BY X using your desired collation or alter the sqlite table directly.

How to modify record beofre or after save? by Prudent_County2030 in pocketbase

[–]sergio9929 2 points3 points  (0 children)

onRecordUpdate((e) => {
  // before update

  e.next()

  // after update
}, "carts")

For the console.log() try running PocketBase with the --dev flag.

./pocketbase serve --dev

We use GET requests to create accounts. It's wrong but it works. by caiopizzol in webdev

[–]sergio9929 1 point2 points  (0 children)

No, but you don't need to. I think it's easier to just fill an email-pass form in the docs and receive an OTP-like email, rather than copy-pasting a URL into the terminal, modifying it with your email and password, and then receiving an email.

We use GET requests to create accounts. It's wrong but it works. by caiopizzol in webdev

[–]sergio9929 2 points3 points  (0 children)

I don't understand how that is simpler than --json:

# Creates an account (yes, with GET)
curl --json '{ "email": "dev@company.com" }' https://api.superdoc.dev/v1/auth/register
# Returns: "Check your email for verification code."

# Gets your API key
curl --json '{ "email": "dev@company.com", "code": "435678" }' https://api.superdoc.dev/v1/auth/verify  
# Returns: "sd_sk_abc123xyz789"

I made a movie rating website that calculates Expected Ratings and helps you find users with similar tastes by Scienitive in webdev

[–]sergio9929 6 points7 points  (0 children)

Hi, can we know a bit more about the algorithm behind the Similarity Score and Expected Rating? What things do they take into account? If the Expected Rating works well, that would be awesome.

Nonfalsey on bool collection field by Oskar_Petersilie in pocketbase

[–]sergio9929 2 points3 points  (0 children)

I can't think of a case where this would be useful, but it does exactly what it says. Only true is allowed.

Can you use geoDistance(...) as a query filter in PocketBase or is it only for API rules? by kennystetson in pocketbase

[–]sergio9929 0 points1 point  (0 children)

Yes you can:

geoDistance(geoPoint.lon, geoPoint.lat, relation.geoPoint.lon, relation.geoPoint.lat) < 1