cyberpunk007

@cyberpunk007@lemmy.ca

This profile is from a federated server and may be incomplete. Browse more on the original instance.

cyberpunk007,

Probably not much, sadly.

cyberpunk007,

Windows has been more about telling you what you want instead of being intuitive for a few iterations now.

cyberpunk007,

Put it on its own vlan behind a firewall and permit only what is required.

cyberpunk007,

Yes. Just like you can turn off a bunch of the windows 10 crap with registry keys and tools. Why. Why does a user need to go to such lengths to make their OS they paid for not soy on them and deliver them ads?

“Oh it’s not that bad!” You’ll say. Ya. Windows 10 wasn’t THAT bad for it. Then came 11. Then 12 will come. Inch by inch it will turn to shit more and more, and that is the point.

cyberpunk007,

The funny thing is I use Mac Linux and Windows daily. Windows 11 on my surface. This is my business computer. Mac for the employer I work for. Linux for my personal desktop. 11 crashes all the time. Start menu and task bar glitches. Random UI elements not loading properly. I frequently need to restart explorer.exe. I get thunderbolt dock issues and glitches. This does not occur on the MacBook. Or my old windows 10 work laptop.

I actually like 10 now. 11 is hot trash. I’ll take 12 over it so far from what we know of it.

cyberpunk007,

You need to consider the bigger picture. Not this specific thing.

cyberpunk007,

Me neither, I have mainly Microsoft software on there. It’s Microsoft’s own tablet lol. It probably would help if I reinstalled but I can’t be bothered. It “works”.

cyberpunk007, (edited )

Ok sure. But I think we can all agree when we click the start menu we don’t want “recommended” apps. I don’t want to click start and click apps to see the list.

I also can’t be the only one that hates clicking start or pressing the windows key and typing in “word” or something then have it taken a bazillion years to search the web, and have hit or miss results or whether it suggests the app or some shitty web results.

It’s also counter intuitive to remove features that already exist. Like right clicking the start button for useful shortcuts. Or right clicking the task bar for other things like the task manager (which they ended up bringing back, surprisingly). They also removed moving the task bar. These are things that already existed. They removed them. They didn’t need to rebuild them. They were deliberate.

cyberpunk007,

“AI”, more like A-eyeroll 🙄

cyberpunk007,

Ok that seems like a good idea. But since when did we need “AI” to translate text? I think this is my big problem. It feels like a lot of “Here’s an AI to wake you up at the right time before work!” When shit like that has existed for years with a bunch of “if” and “else” statements. It’s not hard to create a series of conditions to do a lot of the things I’m seeing AI uselessly shoved down our throats.

I'm really annoyed by how much Brave Search is pushing AI

I’ve been using Brave Search supplemented by Startpage for the past 2+ years. When I search for something, I want to get results for credible webpages, not a summary of unknown quality. I liked the previous AI inclusion because it was instant, didn’t take up much space, and I could quickly navigate to the websites referenced...

cyberpunk007,

I’m really annoyed how everyone is pushing AI. It’s so far not as big a deal as they make it out to be.

cyberpunk007,

$1500? Unlikely. Probably 2,000 or 2,500 💀

cyberpunk007,

If years of using a case has taught me, once you get some sand or something in it, it will practically scratch itself.

cyberpunk007,

“new” concerns lol. There are so many of these articles with self driving cars crashing.

cyberpunk007,

Let’s pretend it’s 50/50 humans drive ng cars and self driving cars. The numbers would be a lot higher. It’s not really a fair comparison.

cyberpunk007,

Been with them since they were wind mobile. I use my service all over Canada and in the USA. I have little to complain about and I don’t pay much.

cyberpunk007,

Yeah, a while haha. They were separate from the big 3 and after one of them pissed me off I was done with the monopoly 🤣. They’ve only gotten better and better. Right now they even have the 35/mo plan with north America coverage.

cyberpunk007,

Ah, finally. Now we will stop talking about, hearing about, and shoving “AI” in everything and the next new thing will be “quantum internet enabled” things.

cyberpunk007,

If only snapshots and backups were a thing…

cyberpunk007,

It’s a piece of cake. Some code along the lines of:

If ($user.modifyCommentRecentlyCount > 50){

Print “user is nuking comments” $comment = $previousComment }

Or some shit. It can be done quite easily, trust me.

cyberpunk007,

This is it exactly. Edits to use are “changed”. To the back end it’s just an iteration while the rest still exist.

cyberpunk007,

The words of every junior dev right before I have to spend a weekend undoing their crap.

There are so many ways this can be done that I think you are not thinking of. Say a user goes to “shreddit” (or some other similar app) their comments. They likely have thousands. On every comment edit, it’s quite easy to check the last time the users edited one of their comments. All they need is some check like checking if the last 10 consecutive comments were edited in hours or milliseconds/seconds. After that, reddit could easily just tell the user it’s editing their comments but it’s not. Like a shadowban kind of method. Another way would be at the data structure level. We don’t know what their databases and hardware are like, but I can speculate. What if each user edited comment is not an update query on a database, but an add/insert. Then all you need to do is update the live comments where the date is before the malicious date where the username=$username. Not to mention when you start talking Nimble storage and stuff like that, the storage is extremely quick to respond. Hell I would wager it didn’t even hit storage yet, probably still on some all flash cache or in memory. Another way could be at the filesystem level. Ever heard of zfs? What if each user had their own dataset or something, it’s extremely easy and quick to roll back a snapshot, or to clone the previous snapshot. There are so many ways.

At the end of the day a user is triggering this action, so we don’t necessarily need to parse “billions” of records. Just the records for a single user.

cyberpunk007,

How do you do that? Do you narrow it down to a timeframe?

When a user edits a comment, they submit a response. When they submit a response, they trigger an action. An action can do validation steps and call methods, just like I said above, for example. When the edit action is triggered, check the timestamp against the previously edited comment’s timestamp. If the previous - or previous 5 are less than a given timeframe, flag it. “Shadowban” the user. Make it look like they’ve updated their comments to them, but in reality they’re the same.

We’ve had detection methods for this sort of thing for a long time. Thing about how spam filtering works. If you’re using some tool to scramble your data, they likely have patterns. To think reddit doesn’t have some means to protect itself against this is naive. It’s their whole business. All these user submitted comments are worth money.

Now you need to parse billions upon billions upon billions of records. And yes, it’s billions because you need the system to search through all the records to know which record fits the parameters. And you need to do that across multiple backups for each deleted profile/comment.

This makes me thing you don’t understand my meaning. I think you’re talking about one day reddit decides to search for an restore obfuscated and deleted comments. Yes, that would be a large undertaking. This is not what I’m suggesting at all. Stop it while it’s happening, not later. Patterns and trends can easily identify when a user is doing something like shreddit or the like, then the code can act on it.

It’s a lot of work. And what’s the payoff? A few good comments and a ton of “yes this ^” comments.

this

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • kavyap
  • DreamBathrooms
  • InstantRegret
  • magazineikmin
  • cubers
  • GTA5RPClips
  • thenastyranch
  • Youngstown
  • rosin
  • slotface
  • tacticalgear
  • ethstaker
  • modclub
  • JUstTest
  • Durango
  • everett
  • Leos
  • provamag3
  • mdbf
  • ngwrru68w68
  • cisconetworking
  • tester
  • osvaldo12
  • megavids
  • khanakhh
  • normalnudes
  • lostlight
  • All magazines