chaos

joined 2 years ago
[–] chaos@beehaw.org 3 points 1 month ago

You know, they have pre-wrapped sausages, but they don't have pre-wrapped bacon.

[–] chaos@beehaw.org 8 points 1 month ago

I see this as an accessibility problem, computers have incredible power but taking advantage of it requires a very specific way of thinking and the drive to push through adversity (the computer constantly and correctly telling you "you're doing it wrong") that a lot of people can't or don't want to do. I don't think they're wrong or lazy to feel that way, and it's a barrier to entry just like a set of stairs is to a wheelchair user.

The question is what to do about it, and there's so much we as an industry should be doing before we even start to think about getting "normies" writing code or automating their phones. Using a computer sucks ass in so many ways for regular people, you buy something cheap and it's slow as hell, it's crapped up with adware and spyware out of the box, scammers are everywhere ready to cheat you out of your money... anyone here is likely immune to all that or knows how to navigate it but most people are just muddling by.

If we got past all that, I think it'd be a question of meeting users where they are. I have a car but I couldn't replace the brakes, nor do I want to learn or try to learn, but that's okay. My car is as accessible as I want it to be, and the parts that aren't accessible, I go another route (bring it to a mechanic who can do the things I can't). We can do this with computers too, make things easy for regular people but don't try to make them all master programmers or tell them they aren't "really" using it unless they're coding. Bring the barrier down as low is it can go but don't expect everyone to be trying to jump over it all the time, because they likely care about other things more.

[–] chaos@beehaw.org 7 points 1 month ago (4 children)

I'm so confused that the same people can say "why does everyone get their undies in a bunch that we happily accept putting arbitrary data in columns regardless of type, that's good, it's flexible, but fine, we'll put in a 'strict' keyword if you really want column types to mean something" and also "every other SQL says 1=='1' but this is madness, strings aren't integers, what is everyone else thinking?!"

[–] chaos@beehaw.org 9 points 2 months ago

"Life without risk of poverty"?! That desperation and fear is the only way I can staff my sweatshops!

[–] chaos@beehaw.org 59 points 2 months ago (2 children)

Back in the olden days, if you wrote a program, you were punching machine codes into a punch card and they were being fed into the computer and sent directly to the CPU. The machine was effectively yours while your program ran, then you (or more likely, someone who worked for your company or university) noted your final results, things would be reset, and the next stack of cards would go in.

Once computers got fast enough, though, it was possible to have a program replace the computer operator, an "operating system", and it could even interleave execution of programs to basically run more than one at the same time. However, now the programs had to share resources, they couldn't just have the whole computer to themselves. The OS helped manage that, a program now had to ask for memory and the OS would track what was free and what was in use, as well as interleaving programs to take turns running on the CPU. But if a program messed up and wrote to memory that didn't belong to it, it could screw up someone else's execution and bring the whole thing crashing down. And in some systems, programs were given a turn to run and then were supposed to return control to the OS after a bit, but it was basically an honor system, and the problem with that is likely clear.

Hardware and OS software added features to enforce more order. OSes got more power, and help from the hardware to wield it. Now instead of asking politely to give back control, the hardware would enforce limits, forcing control back to the OS periodically. And when it came to memory, the OS no longer handed out addresses matching the RAM for the program to use directly, instead it could hand out virtual addresses, with the OS tracking every relationship between the virtual address and the real location of the data, and the hardware providing Memory Management Units that can do things like store tables and do the translation from virtual to physical on its own, and return control to the OS if it doesn't know.

This allows things like swapping, where a part of memory that isn't being used can be taken out of RAM and written to disk instead. If the program tries to read an address that was swapped out, the hardware catches that it's a virtual address that it doesn't have a mapping for, wrenches control from the program, and instead runs the code that the OS registered for handling memory. The OS can see that this address has been swapped out, swap it back in to real RAM, tell the hardware where it now is, and then control returns to the program. The program's none the wiser that its data wasn't there a moment ago, and it all works. If a program messes up and tries to write to an address it doesn't have, it doesn't go through because there's no mapping to a physical address, and the OS can instead tell the program "you have done very bad and unless you were prepared for this, you should probably end yourself" without any harm to others.

Memory is handed out to programs in chunks called "pages", and the hardware has support for certain page size(s). How big they should be is a matter of tradeoffs; since pages are indivisible, pages that are too big will result in a lot of wasted space (if a program needs 1025 bytes on a 1024-byte page size system, it'll need 2 pages even though that second page is going to be almost entirely empty), but lots of small pages mean the translation tables have to be bigger to track where everything is, resulting in more overhead.

This is starting to reach the edges of my knowledge, but I believe what this is describing is that RISC-V chips and ARM chips have the ability for the OS to say to the hardware "let's use bigger pages than normal, up to 64k", and the Linux kernel is getting enhancements to actually use this functionality, which can come with performance improvements. The MMU can store fewer entries and rely on the OS less, doing more work directly, for example.

[–] chaos@beehaw.org 9 points 2 months ago

See for yourself! This is someone solving day 1 of this year:

https://youtu.be/ym1ae-vBy6g

If you're really going for it, you can automate some of the busy work like getting the input file and a template that's ready to read it in and split it into lines, then it's mostly a matter of skimming for what to do and knowing how to zip/map/fold/reduce/etc the data quickly. I was a bit surprised to see him having to add imports to his file, I'd think he'd have those ready to go, and of course quitting out of Vim to run the script isn't necessary either, but I can't judge because I definitely do that too...

[–] chaos@beehaw.org 3 points 2 months ago

Conspiracy theorists: "scientists know it's all wrong but they're preventing the truth from coming out to protect their precious 'theories'"

Actual scientists: "crap, our theories were dead on yet again, damn it, will someone please finally blow even a tiny hole in this thing so we can move forward"

[–] chaos@beehaw.org 2 points 2 months ago

A VPN is just a way to say "wrap up my normal internet packets and ship them somewhere specific before they continue the normal way." The normal way is you want to get a message to some other server, and as a part of setting up the network you're on, your machine should already have a list of other devices it's physically connected to ("physically" could be "via radio waves" so not just wired) and they should have already advertised "hey, I've got access to these places too" for your information. Your router is likely the only one in your home network advertising anything that is on the larger internet, so all your outgoing messages will have to go that way to get to their destination. For example, I've got a phone, a wifi access point, a router, and my ISP's box; my phone knows the WiFi access point is two hops away from internet because the access point said so, that's the best one it can see, so it sends it that way and hopes it makes it. Each machine in between does the same thing until hopefully it gets where it is supposed to.

With a VPN, the same messages are wrapped in a second message that is addressed to the other end of the VPN. When it gets to the VPN provider, it's unwrapped, then the inside message is sent off to wherever it's supposed to go. If a message comes back to the VPN provider addressed to you (ish, this is simplifying a bit), it's wrapped up the same way and sent back to you.

Big companies often put resources "behind" the VPN, so you can't send messages from the outside addresses to the office printer, they'll get blocked, but you can request a connection to the VPN, and messages that come in through that path do get allowed. The VPN can be one central place where you make sure everything coming in is allowed, then on the other side the security can be a little less tight.

VPNs also encrypt the internal message as a part of wrapping them up, which means that if you're torrenting via a VPN, all anyone else can see is a message addressed to your VPN provider and then an encrypted message inside. And anyone you were exchanging messages with only ever saw traffic to and from the VPN provider, they never saw where it was going after your VPN provider got it. Only you and the VPN provider know what was happening on both ends, and hopefully they don't look too closely or keep records.

Hopefully now it's clear that Mullvad and similar won't help you access your own things from outside, they're only good for routing your stuff through them and then out into the rest of the internet. However, this isn't secret magic tech: you can run your own VPN that goes in the other direction, allowing you into your own home network and then able to connect to things as if you were physically there. Tailscale is probably the easiest thing for things like that nowadays, it'll set up a whole system where your devices can find each other and set up a mesh of secure, direct connections no matter where they are physically located. By default, just the direct device-to-device connections are re-routed, but you can also make a device an "exit node" that can route all your traffic like a traditional VPN.

Of course, that will be the exact opposite of what you want for privacy while torrenting, as it's all devices that you clearly own and not hiding their identities whatsoever. But it's very cool for home networking and self-hosting stuff.

[–] chaos@beehaw.org 24 points 2 months ago (3 children)

Bluesky's more like an aspirationally decentralized platform, you can keep your own data on your own server and use your own domain name as a user name, but most of the rest of it is "centralized, but we're designing it in such a way that we can open it up later." Even then, though, it's heavily influenced by the original idea of "let's make something decentralized that Twitter can switch to once it's worked out" which means that even when they do open things up, it's likely that a lot of Bluesky will only be practical at "big tech company scale" to run yourself, whereas Mastodon or Lemmy you can just spin up on a server and it'll be fine until you get a lot of users.

[–] chaos@beehaw.org 6 points 3 months ago (1 children)

I as a human being have grown up and learned from experience and the experiences of previous humans that were documented or directly communicated to me. I can see no inherent difference with an artificial intelligence learning on the same data.

It's a massive difference in scale. For one, before you even leave the womb you have millions of years of evolution shaping the initial structure of your brain. Then your "training" begins, but it's infinitely richer than anything we're giving to these LLMs. Sights, sounds, smells, feelings, so many that part of what your brain is learning is what it must ignore. You're also benefitting from the interactivity of your environment, you can experiment with things and get feedback for what happens. As you get older and develop more skills, you can start integrating them together to do even more complex things, and the people around you will use their own incredible intelligence to specifically tailor your training to what you need as you learn and grow.

Meanwhile, an LLM is getting fed words, and learning how to predict the next word. It's a pale shadow of the complex lives humans live. Words are one of the more powerful things we have for thinking and reasoning, so if you're going to go all in on one skill, it's a rich environment for learning and in theory the contents of all of humanity's writing probably contains all the information necessary to recreate human intelligence, but our current technology doesn't even come close to wringing every ounce of knowledge from the training sets.

[–] chaos@beehaw.org 0 points 3 months ago

It's a dire situation and progress isn't nearly fast enough, but progress is getting made. The answer, as ever, isn't satisfying because it's boring and difficult: continue to organize and apply pressure to those in power to take action, and raise awareness by pointing to how it affects people in their own lives. This stunt does neither of those things, and if anything, makes our side look whiny and out of touch.

[–] chaos@beehaw.org 2 points 3 months ago (2 children)

Maybe there's a third option besides "do something ineffectual that most people will find annoying, offensive, and unrelated to climate change" and "completely resign ourselves to a climate disaster" that we can try?

view more: next ›