Please do not perceive me.

  • 0 Posts
  • 18 Comments
Joined 2 years ago
cake
Cake day: June 8th, 2023

help-circle
  • A lot of it deals with the fact that Roblox doesn’t pay you out until you accrue some critical mass of value. If a kid makes an app and puts it on Steam and it sells 2 copies, they’re getting paid for those 2 copies. Not so for Roblox. You require 30,000 Robux to cash out - which seems to be quite a lot, actually, considering the documentation I’m reading on their own webpage advertises this with photos that show 97,493 total Robux earnings from this presumably rock-star developer that you want to be like, and buyable items costing between 80-600 Robux.

    It should also be noted that I cannot locate any mention of a dollars-to-Robux ratio without an account, which I do not have and am not making, so God only knows what rate they actually pay you out at once you do manage to acquire your 30,000 Robux. The primary use case of earned Robux is to then invest them back into the in-game shop to purchase content that other users have made. Robux actively doesn’t want you cashing out and makes it as difficult as possible to do so.

    I’m personally not too upset about a game primarily made from user created content, I think it’s kind of cool, but the way they’ve tied real money into the process feels very icky and scumbaggish to me. My particular issue with Roblox is the rampant pedophilia and sexual grooming that the devs are either unwilling to alienate (since, presumably, this population makes up a not-insignificant percentage of their user base) or else actively in cahoots with, because this has been a known problem for many years but approximately zero steps have been taken to address it.


  • Yeah this is spot on. Tech literacy is at an all time low, today’s kids and young adults are having to be taught during work orientation what a file browser is now.

    People who are currently between the ages of 30 and 60 are the generation that learned how to use their technology effectively. Older than that and you’re likely to be the “clueless boomer” trope, younger than that and you’re likely to be a tablet baby.

    Not to mention that in my experience at least, public school teachers cared about basically every single petty problem except for the ones that would have actually benefitted anyone. You’ve been punched straight in the face every single day for two years by the same bully? I sleep. One of the girls wore shorts this morning and has visible knees? Get sent straight home immediately. Do not pass Go. This is a sin that cannot be tolerated.

    All that to say, this story is definitely made up but there are places in America today where it could happen 100% as written.




  • I figured that shit out when I was 12 and there were way less learning resources about it on the internet then. Fuck 'em. Someone who never has to solve their own problems without handholding is someone who will never learn to solve problems, period. IPad kids are scared of error messages and that’s their problem. They’ve never had to troubleshoot anything before.

    Though I can’t blame the kids entirely. Most error messages in the modern era absolutely suck nuts. Half of them nowadays (at least on the client side) are just

    “oopsie, there’s been a widdle fucky wucky, sooorrrrryyyyy 💖”

    With zero actionable info in it. Not even a distinction of You/We/Your ISP Has Fucked Something Up. I guess they figured (correctly) that the end user wasn’t going to read it anyway so why bother, but this drives me nuts when I see it.




  • It became a real problem on reddit after a while where bots would just go grab the most popular posts of 6 months ago and post them all again. Before the bots, people would do it to farm karma, and the people would get called out for it, but it was never a huge deal because you were still getting at worst like a 60/40 split of new content to reposts. But after a certain point the ratio shifted dramatically in favor of reposts in a lot of bigger communities. I think that’s what really galvanized the hatred toward them.




  • Hey, I was working on the same problem the other day and maybe you can help me with it a bit further. If you don’t mind.

    I like to run gotop on my second monitor so I can watch my system resources, and normally I just open a terminal window and type gotop and it runs and stays open and continually updates. I’ve made this command into a shell script to run at startup. Using this script presumably halfway works, because a terminal window shows up, but it tells me “the child process exited normally with status 127.” and prompts for relaunch (which does nothing except present the same message again).

    Now the internet tells me that 127 generally means “command not found” which doesn’t really make sense to me because gotop is in my PATH and can be run normally without any kind of special arguments or location if I pop open a terminal and do it myself. So I’m not really sure where the problem lies. The script in question is currently parked on my desktop and when I run it manually, when logged in and everything, nothing changes except that I also get an additional terminal window that states the child process exited normally with status 0.

    I’m brand new to both Linux and shell scripting so I barely have any idea what I’m doing here, I’ve gathered through individual research that I should also have a line starting the file with #! /bin/bash but I’m not actually even too confident about that part. Currently the entire script reads as follows:

    #! /bin/bash gnome-terminal -- sh -c gotop

    I’ve tried with and without quotes on gotop and I’ve tried with and without the hashbang and none of the four options have given me different results, which makes me think I’m barking at the wrong tree. I have made the script executable so I don’t think that’s the problem.

    O wise one, please bestow upon the poor noob your knowledge. (This request is also open to other wise ones who may be passing by.)