• 0 Posts
  • 238 Comments
Joined 1 year ago
cake
Cake day: August 15th, 2023

help-circle

  • Vlyn@lemmy.ziptoScience Memes@mander.xyzUse Zotero
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    1
    ·
    25 days ago

    Good joke, you’d have to double and triple check every single citation as LLMs love to hallucinate.

    I wouldn’t risk my title or expulsion because an LLM fucked up my work. Even one missed reference or a false citation could cost you plenty.


  • It already reduced the services severely. The included Amazon Music sucks if you don’t pay extra. The included Amazon Video has ads now. And Prime gaming has reduced the offers.

    While YouTube premium gives you full access to YouTube music and 1080p Enhanced Bitrate video quality. I only got it for the music, no ads on TVs is a bonus (Already had an adblocker for phone/PC).


  • Amazon has around 310 million active users. Amazon has 230 million Prime subscribers, even though it costs up to $15 a month. Yes, those include cheaper student subscriptions of course, but still.

    Of course 30% is optimistic, but the average people I know happily watch those fucking ads. And don’t even complain about unskipable double ads. They don’t like them, they’re still too lazy to install an ad blocker as long as they get their content. Each one of them would absolutely shell out 5 bucks to continue watching (it’s less than a single beer when you go out).


  • You underestimate how addicted people are to YouTube. There is no alternative to it.

    Twitch is streaming focused, the vods absolutely suck. Kick? Same.

    What else is there? TikTok? Instagram? Neither of which provide long high quality videos.

    After all we are talking about YouTube literally blocking everyone and putting up a banner: $5 a month or you’re out of luck. If someone already happily pays $18 a month for Netflix, what is 5 bucks?


  • It would be a huge gamble, but it could pay off. Seriously, how many people are watching YouTube every day? Hours of their favorite content creators.

    Imagine a rug pull, YouTube is now a pay only service. No ads, but everyone has to pay $5 a month to access. I’d bet with you that a surprising amount of people would just pay that to continue using it.

    How many? Nobody knows, but it would certainly be 30% or higher. Now imagine 30% of users paying just $5 a month how much money that would be.

    It can be done, YouTube just doesn’t do it right now as they still earn plenty with ads. If suddenly everyone started to use an ad blocker then things would change very quickly.



  • Just the way I described, I’m a software developer, it would be easy as hell.

    Your browser requests the video, YouTube decides you have to watch an ad. The ad has 15 seconds unskipable. So the easiest thing they could do is not send you video data for 14 seconds (add a spare second for buffering to not piss off users who do watch ads).

    Doesn’t matter if you call some endpoint, load the ad data, whatever. You’re not receiving any video for a while, which would piss people off enough to leave.


  • I still hold the opinion that they could absolutely block you out. I use uBlock Origin and there was actually a time where I got blocked/warnings every day. Even with upgrading my plugin / refreshing all block lists.

    At some point I finally gave in and grabbed YouTube Premium, not because of the ads (I’d rather stop watching than watch with ads), but because I needed their music service (Used Amazon Music before, the app sucked. Music quality was the highest out there though. Also cancelled Prime for a double whammy).

    For example the moment an ad gets triggered they could just refuse to send you video data. And if the ad is an unskipable 15 seconds, block playback for 15 seconds. Done. Even if you block this, you get 15 seconds of nothing and will soon be pissed off enough to either start watching ads, buy Premium or leave (no longer costing them bandwidth).



  • That’s a weird way to look at it, obviously you’re watching the content.

    I’d rather see it like this:

    • Free tier with ads

    • Subscription without ads (and better quality)

    You are currently on the free tier. Yes, you can block ads (just like you can pirate movies), but that’s not the deal you were offered. I’m using an ad blocker myself, but I can understand the corporate side too.

    They absolutely could add a hard paywall, but why should they if there are plenty of users who want to watch for free by paying with ads?





  • But that’s not how model training works, it doesn’t simply copy and paste entire songs into its training data. It more or less “listens” to it, analyzes it and when you ask to create a rock song for example it just has an algorithm behind it what a song like that would sound like.

    But you can’t just ask it to generate Bohemian Rhapsody from its data, it would probably get very close depending on the training, but it would never be 100% the same (except the model was only trained on this one song).

    Just like you can listen to rock songs and then make your own, that’s totally valid. The problem here is of course automation and scale, but saying it’s not fair use is dubious.


  • I really don’t see the issue there, you’re only outputting highly specific data to a website, not dumping half the database.

    Do you mean your typical CRUD structure? Like having a User object (AuthId, email, name, phone, …), the user has a Location (Country, zip, street, house number, …), possibly Roles or Permissions, related data and so on?

    SQL handles those like a breeze and doesn’t care at all about having to resolve the User object to half a dozen other tables (it’s just a 1…1 relation, on 1…n, but with a foreign key on the user id it’s all indexed anyway). You also don’t just grab all this data, join it and throw it to the website (or rather the enduser API), you map the data to objects again (JSON in the end).

    What does it matter there if you fetched the data from a NoSQL document or from a relational database?

    The only thing SQL is not good at is if you have constantly changing fields. Then JSON in SQL or NoSQL makes more sense as you work with documents. For example if you offer the option to create user forms and save form entries. The rigid structure of SQL wouldn’t work for a dynamic use-case like that.


  • I mean in my case it’s for an international company where customers use this structure and the depth can basically be limitless. So trying to find the topmost parent of a child or getting all children and their children anywhere inside this structure becomes a performance bottleneck.

    If you have a single level I really don’t understand the problem. SQL joins aren’t slow at all (as long as you don’t do anything stupid, or you start joining a table with a billion entries with another table with a billion entries without filtering it down to a smaller data subset).



  • If you only join on indexed columns and filter it down to a reasonable number of results it’s easily fast enough.

    For true hierarchical structures there’s tricks. Like using an extra Path table, which consists of AncestorId, DescendentId and NumLevel.

    If you have this structure:

    A -> B -> C

    Then you have:

    A, A, 0

    A, B, 1

    A, C, 2

    B, B, 0

    B, C, 1

    C, C, 0

    That way you can easily find out all children below a node without any joins in simple queries.