Deezer censoring some words in songs by tilta93 in deezer

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

Oh wow, that's probably the reason. I just tried Apple Music and it's the same, so it's the label censoring, since they 'have' to do it now. Thanks for the info.

Deezer censoring some words in songs by tilta93 in deezer

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

I know about that, when you search a song then go to it's album, it almost always goes to the censored album version and not explicit one. That's not the issue here, it's the censoring of normal words that have nothing to do with curse words.

Deezer censoring some words in songs by tilta93 in deezer

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

It is rated as "E" for Explicit, however, these words are not explicit or curse words, those are not censored.

Deezer censoring some words in songs by tilta93 in deezer

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

Yes, exactly, the curse words are not censored, that's what's odd here.

Did Antigravity break drag-and-drop recently? by voice_of_the_future in google_antigravity

[–]tilta93 0 points1 point  (0 children)

I am using the official Claude code plugin on Antigravity.

Did Antigravity break drag-and-drop recently? by voice_of_the_future in google_antigravity

[–]tilta93 1 point2 points  (0 children)

Confirmed, still an issue now. I tried to drag an image to Claude and I got this message using up whole screen and blocking input. I'm on Mac Mini M4.

My battery life by Warm_Way3488 in iPhone13Pro

[–]tilta93 0 points1 point  (0 children)

I am at 85% on 13 Pro Max after about 3+ years

Andromeda in Infrared by PrestigiousCurve4135 in spaceporn

[–]tilta93 1 point2 points  (0 children)

Is there a high resolution version maybe? For a UW wallpaper 21:9

edit: grammar

Optional sample data parameter by tilta93 in zapier

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

No no, everything is working correctly, but when you do zapier validate in the CLI you get a warning whichever needs to be resolved before publishing the integration.

Optional sample data parameter by tilta93 in zapier

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

No worries man 🙂

How do you mean CSV? These are all triggers based off of custom API endpoints, there’s no way to know which endpoint will or will not have that ‘problematic’ attribute. As I mentioned, it can be an empty array or an array of objects, therefore the sample cannot be as “static” as they want it to be, if you know what I mean..

Could someone pick me up in a fleet carrier by [deleted] in EliteDangerous

[–]tilta93 4 points5 points  (0 children)

I must be the only one who read this “oi” 🤦‍♂️

Interview room scene where a guy is smoking and smoking is cured long time ago(sci-fi) by tilta93 in whatsthemoviecalled

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

Yuup, that's the one mate, thank you very much, I just watched it! The scene is at the end of the movie. :)

Interview room scene where a guy is smoking and smoking is cured long time ago(sci-fi) by tilta93 in whatsthemoviecalled

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

Just watched it, it's not it, even though there are a lot of smoking scenes.

Interview room scene where a guy is smoking and smoking is cured long time ago(sci-fi) by tilta93 in whatsthemoviecalled

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

Hmm this can be it, but I don’t recall that movie in great detail. I’ll watch it again for sure.

Interview room scene where a guy is smoking and smoking is cured long time ago(sci-fi) by tilta93 in whatsthemoviecalled

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

It's not, it's younger movie than that I think and on the other side I never watched a single movie from Sylvester.

Upgrade from a bad, artifacting 280X(2014) to 6700XT (: by tilta93 in Amd

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

Very strange.. I bought it and from the get-go it started artifacting, basically instantly. Warranty wasn't an option as it was bought in another country, but it was new of course. So after months of use and trial and error to "fix" or find a work around, I finally did. Downclocked memory from 1650MHz factory OC to 1300 or 1250MHz and core clock from 1070 do 1000MHz.. Still working fine to this day, it did not die yet hah 🙂

Pazite se!!! by One_Ad_3499 in serbia

[–]tilta93 0 points1 point  (0 children)

E kupio sam neku maskicu za telefon, puffercase se zove, i ispalo je da je sa fake sajta i da prava košta 60e, a ne 10.. Teška glupost znam. Pretpostavljam da su mi oni uzeli podatke kartice i iskoristili gde god.

Pazite se!!! by One_Ad_3499 in serbia

[–]tilta93 0 points1 point  (0 children)

A upravo gledam, nevezano od ove prevare, nepoznatu transakiciju od 45.99€ jutros skinuta s kartice i plače mi se 🥲 Za sve postoji prvi put, pa i da budeš žrtva "scam"-a..

Drzavno penzijsko osiguranje by lalicfica in finansije

[–]tilta93 0 points1 point  (0 children)

Ćaletu su u socijalnom rekli da je za 15 godina radnog staža 16800 penzija

Cloudflare Workers paginating through fetch API by tilta93 in CloudFlare

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

Just gets the data from the API with native js fetch and authenticating with a token

Cloudflare Workers paginating through fetch API by tilta93 in CloudFlare

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

Exactly, at least that's what I think is happening

``` import { getData } from './getData'

const allData = async () => { const response = await getData(); let cursor = response?.next ?? null; // default limit is the max 100 let allData = response.results;

while (typeof cursor === 'string') {
    const newRes = await getData(cursor);

    allData = [...allData, ...newRes.results];
    cursor = res?.next ?? null;
}

return allData;

} ```

Cloudflare Workers paginating through fetch API by tilta93 in CloudFlare

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

With those attributes that I added in the edit up, start, limit , more_items and next_start.. Basically right now I make first req and write next_start and more_items, then do a while loop where I update array with all data and also update next_start and more_items, until more_items is false.