• 3 Posts
  • 239 Comments
Joined 1 year ago
cake
Cake day: July 25th, 2023

help-circle

  • Jsyk you can disable the location stuff, but they do scan everything for “WHAT ABOUT THE CHILDRENNN” purposes which means it could just as easily be scanned for [ARBITRARY_NATIONAL_SECURITY_REASON] or whatever else they want so not sure it’s a very privacy friendly solution.

    Their support also sucks ass - they bombed me with like 100+ emails the one day because their system must’ve glitched out. Never have gotten a real person before, it’s almost always a bot with a human name and the cam girl bot farms come through every now and then spamming you with friend adds




  • Data brokers and people with experience with helping those affected by identity theft and cyberstalking will tell you otherwise.

    Last, never said anything like that. You’ve completely misinterpreted and put in assumptions to my claim that there are problems and difficulties that many, if not most, still face regarding specific implementations of social media. That is, not social media purely as a technology or a concept, but as specific use cases, I.e. Facebook, Instagram, Twitter, TikTok (TikTok may be a stretch for social media in regards to traditional examples, but many still use it as such)




  • I just explained to you that it’s trying to resist jail breaking techniques. Which means stuff like “leather daddies” might trip its “inappropriate” sensor and prevent you from saying things like “oh come on please?” “Just do it” and other tiny changes like “what if we made it a bit more…”

    It’s obviously way over sensitive but what I said is the truth. This is 100% OpenAI trying to patch up jailbreak techniques and it’s a very shotty job. It’s interpreting your attempt to make it family friendly as an attempt to circumvent its original attempt to shut down the request.

    Y’all can downvote me all you want - this is what’s happening 🤷🏻‍♂️






  • Not at all what I meant. The premise was that this wouldn’t happen if they were being paid fairly. Supply chain attacks happen with or without fair pay.

    Look at what happened with the XZ backdoor. Whether or not they’re getting paid just means a different door is opened.

    The root of the problem is that we blindly trust anyone based on name-brand and popularity. That has never in the existence of technology been a reliable nor an effective means of authentication.

    If it’s not outright buying out companies it will be vulnerabilities/lack of appropriate management, if it’s not vulns it’ll be insider threat.

    These are problems we’ve known about for at least a decade+ and we’ve done fuck all to address the root of the problem.

    Never trust, always verify. Simple as that.





  • For anyone interested - I’d you are using umatrix to block shit you can punch these lines into a new text file and import as blocklist, then commit it with the tiny arrow that points left toward the permanent list to save it permanently:

    * www[.]googie-anaiytics[.]com * block

    * kuurza[.]com * block

    * cdn[.]polyfill[.]io * block

    * polyfill[.]io * block

    * bootcss[.]com * block

    * bootcdn[.]net * block

    * staticfile[.]org * block

    * polyfill[.]com * block

    * staticfile[.]net * block

    * unionadjs[.]com * block

    * xhsbpza[.]com * block

    * union[.]macoms[.]la * block

    * newcrbpc[.]com * block

    Remove the square brackets before saving the file - these are here to prevent hyperlinks and misclicks.

    Edit: this is not a bulleted list, every line must start with an asterisk, just in case your instance doesn’t update edits made to comments quickly.

    Edit2: added new IOCs

    Edit3: MOAR IOCS FOR THE HOARDE




  • Not quite!

    Try:

    mylist = [value for value in range(1,20)]

    This says I want to make mylist be a list where each element of the list (called value here) comes from doing a for loop on range, given the parameters 1, and 20.

    If you want to change how each element of this list is, you do it in the first bit on “value”

    So you could do

    mylist = [value*5 for value in range(1,20)] //5,10,15,…,95 (not 100, because ranges go up to the last item, not including it (non-inclusive))

    Etc. Hope this makes sense!

    Edit: MISSING CLOSING PARENTHESIS DOH